From d7c989d4f60604a243690734b4192b6d90390ccf Mon Sep 17 00:00:00 2001 From: Szczepan Zaskalski Date: Sat, 26 Aug 2017 00:10:05 +0200 Subject: [PATCH] When path contains spaces --- Setup (run before opening solution).bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Setup (run before opening solution).bat b/Setup (run before opening solution).bat index 39d244c..83650ec 100644 --- a/Setup (run before opening solution).bat +++ b/Setup (run before opening solution).bat @@ -3,7 +3,7 @@ @echo off set /p path="Please enter the folder location of your SpaceEngineersDedicated.exe: " cd %~dp0 -mklink /J GameBinaries %path% +mklink /J GameBinaries "%path%" if errorlevel 1 goto Error echo Done! goto End @@ -14,11 +14,11 @@ goto EndFinal set /p path="Please enter the folder location of your Torch.Server.exe: " cd %~dp0 -mklink /J TorchBinaries %path% +mklink /J TorchBinaries "%path%" if errorlevel 1 goto Error echo Done! You can now open the Torch solution without issue. goto EndFinal :Error2 echo An error occured creating the symlink. :EndFinal -pause \ No newline at end of file +pause