Fixed batch mklink command argument

This commit is contained in:
Szczepan Zaskalski
2017-08-31 22:25:10 +02:00
parent 7937cbd122
commit 22e3019610

View File

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