From 1e19a5e1cf869ccdb763a42931b921d560cd02d7 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 24 Nov 2024 21:28:57 +0100 Subject: [PATCH] bugfix: fix filepath when calling from local dir --- util/chocolatey.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/chocolatey.psm1 b/util/chocolatey.psm1 index 118ebb5..bbb4091 100644 --- a/util/chocolatey.psm1 +++ b/util/chocolatey.psm1 @@ -12,5 +12,5 @@ function ChocolateyInstall # Start admin process, import this script, run 'InstallPackages' function Start-Process powershell.exe -Verb RunAs ` - -ArgumentList "-C", "'Import-Module ./util/chocolatey.psm1; InstallPackages'" + -ArgumentList "-C", "'Import-Module ./chocolatey.psm1; InstallPackages'" }