From 52cd32aca3b9dca4ec2632d4e8c80de1a47da5ab Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Sun, 22 Dec 2013 07:49:58 +0100 Subject: fixed bug where context menu options did not support paths containing spaces --- win32/bin/luarocksw.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/bin/luarocksw.bat b/win32/bin/luarocksw.bat index 313508d4..8ac02920 100644 --- a/win32/bin/luarocksw.bat +++ b/win32/bin/luarocksw.bat @@ -34,14 +34,14 @@ if [%1]==[removeall] goto REMOVEALL REM execute LuaRocks and wait for results echo executing: luarocks %* -call %MYPATH%luarocks %* +call "%MYPATH%luarocks" %* pause goto END :REMOVEALL for /f "delims=-" %%a in ("%~n2") do ( echo executing: luarocks remove %%a - %MYPATH%luarocks remove "%%a" + "%MYPATH%luarocks" remove "%%a" pause goto END ) -- cgit v1.2.3-55-g6feb