Skip to content

Commit

Permalink
Wrapped build paths with quotes
Browse files Browse the repository at this point in the history
You should now be able to run Build.cmd from a path with spaces in it.
  • Loading branch information
ElanHasson committed May 29, 2015
1 parent a1e8f6c commit 1879948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Build.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
%~dp0src\Build.cmd
"%~dp0src\Build.cmd"
2 changes: 1 addition & 1 deletion src/Build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if "%FrameworkVersion%" == "" set FrameworkVersion=v4.0.30319

SET MSBUILDEXEDIR=%FrameworkDir%\%FrameworkVersion%
SET MSBUILDEXE=%MSBUILDEXEDIR%\MSBuild.exe
SET VERSION_FILE=%CMDHOME%\Build\Version.txt
SET VERSION_FILE="%CMDHOME%\Build\Version.txt"

if EXIST "%VERSION_FILE%" (
@Echo Using version number from file %VERSION_FILE%
Expand Down

0 comments on commit 1879948

Please sign in to comment.