-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Weird string expansion order causes problems due to "(x86)" in the name.
- Loading branch information
1 parent
e470f4a
commit 7e66841
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
@echo off | ||
|
||
if defined ProgramFiles(x86) ( | ||
set UnityDir=%ProgramFiles(x86)%\Unity | ||
set UnityDir="%ProgramFiles(x86)%\Unity" | ||
) else ( | ||
set UnityDir=%ProgramFiles%\Unity | ||
set UnityDir="%ProgramFiles%\Unity" | ||
) | ||
|
||
set MONODEVELOP_SDB_TEST=1 | ||
|
||
"%UnityDir%\MonoDevelop\bin\MonoDevelop.exe" | ||
%UnityDir%\MonoDevelop\bin\MonoDevelop.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters