Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 308a2d7

Browse files
committed
Merge pull request #6841 from adalcin/master
Added brackets around root_path in the mkdir directive of setup_for_hacking.bat
2 parents 86d1870 + ef350e7 commit 308a2d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/setup_for_hacking.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if exist %1\dev rmdir %1\dev
1616

1717
REM - Make symlink
1818
REM (doesn't work on XP - see instructions below)
19-
mklink /d %1\dev %root_path%
19+
mklink /d %1\dev "%root_path%"
2020

2121
GOTO Exit
2222

@@ -30,7 +30,7 @@ GOTO Exit
3030
:XPNotSupported
3131
ECHO Sorry, this script doesn't run in Windows XP.
3232
ECHO To enable hacking, use the junction tool (http://technet.microsoft.com/en-us/sysinternals/bb896768)
33-
ECHO as follows: junction.exe %1\dev %root_path%
33+
ECHO as follows: junction.exe %1\dev "%root_path%"
3434
ECHO (in the folder containing Brackets.exe)
3535

3636
:Exit

0 commit comments

Comments
 (0)