From 31dbd2458e02333967ee39e5e52e35a36d51e55f Mon Sep 17 00:00:00 2001 From: Kang Yu Date: Fri, 11 Aug 2023 11:21:57 -0700 Subject: [PATCH] fix #245, double quote path of auto_start script as it may contain space char --- Ninjacrab.PersistentWindows.Solution/auto_start_pw.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ninjacrab.PersistentWindows.Solution/auto_start_pw.bat b/Ninjacrab.PersistentWindows.Solution/auto_start_pw.bat index 4e1814c..23f333f 100644 --- a/Ninjacrab.PersistentWindows.Solution/auto_start_pw.bat +++ b/Ninjacrab.PersistentWindows.Solution/auto_start_pw.bat @@ -1,2 +1,2 @@ -powershell -ExecutionPolicy Bypass -File %~dp0\auto_start_pw_aux.ps1 +powershell -ExecutionPolicy Bypass -File "%~dp0auto_start_pw_aux.ps1" pause \ No newline at end of file