Fix servefiles batch script when in directory with spaces.

This commit is contained in:
Steveice10 2017-02-22 22:35:33 -08:00
parent adc5c2d347
commit 54572a02e1

View File

@ -2,10 +2,10 @@
set /p DSIP="Enter the IP of your 3DS: " set /p DSIP="Enter the IP of your 3DS: "
for %%a in (%*) do ( for %%a in (%*) do (
if "%%~xa"==".cia" ( if "%%~xa"==".cia" (
python %~dp0servefiles.py %DSIP% "%%~a" python "%~dp0servefiles.py" %DSIP% "%%~a"
) )
if "%%~xa"=="" ( if "%%~xa"=="" (
python %~dp0servefiles.py %DSIP% "%%~a" python "%~dp0servefiles.py" %DSIP% "%%~a"
) )
) )
pause pause