Skip to content

Commit a47a6d0

Browse files
sguryevmadskristensen
authored andcommitted
Fix for the path with spaces issue #204
* Support the path with spaces Related to the issue #204 * Cleanup
1 parent 119c2c0 commit a47a6d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ for /d /r . %%d in (testing) do @if exist "%%d" rd /s /q "%%d" > nul
6363
for /d /r . %%d in (tst) do @if exist "%%d" rd /s /q "%%d" > nul
6464

6565
echo Compressing artifacts and cleans up...
66-
%~dp07z.exe a -r -mx9 node_modules.7z node_modules > nul
66+
"%~dp07z.exe" a -r -mx9 node_modules.7z node_modules > nul
6767
rmdir /S /Q node_modules > nul
6868

6969

7070
:done
7171
echo Done
72-
pushd "%~dp0"
72+
pushd "%~dp0"

0 commit comments

Comments
 (0)