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

Added brackets around root_path in the mkdir directive of setup_for_hacking.bat #6841

Merged
merged 3 commits into from
Feb 13, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/setup_for_hacking.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if exist %1\dev rmdir %1\dev

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

GOTO Exit

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

:Exit