Merge pull request #88 from szczepix/patch-1

When path contains spaces
This commit is contained in:
John Gross
2017-08-31 18:01:00 -04:00
committed by GitHub

View File

@@ -3,7 +3,7 @@
@echo off
set /p path="Please enter the folder location of your SpaceEngineersDedicated.exe: "
cd %~dp0
mklink /D GameBinaries %path%
mklink /J GameBinaries "%path%"
if errorlevel 1 goto Error
echo Done! You can now open the Torch solution without issue.
goto End