From c5c7703e00f53b12d521174370445b4543e391f3 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 24 Nov 2024 22:12:09 +0100 Subject: [PATCH] Revert "bugfix: fix filepath when calling from local dir" This reverts commit 1e19a5e1cf869ccdb763a42931b921d560cd02d7. --- util/chocolatey.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/chocolatey.psm1 b/util/chocolatey.psm1 index 037d71d..ae3fc42 100644 --- a/util/chocolatey.psm1 +++ b/util/chocolatey.psm1 @@ -13,5 +13,5 @@ function ChocolateyInstall # Start admin process, import this script, run 'InstallPackages' function Start-Process powershell.exe -Verb RunAs -Wait ` -ArgumentList "-ExecutionPolicy", "Bypass", ` - "-C", "'Import-Module ./chocolatey.psm1; InstallPackages'" + "-C", "'Import-Module ./util/chocolatey.psm1; InstallPackages'" }