From 7a0e55a02a30e5e587e7e10c5b32a12db8abfe0d Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Mon, 25 May 2020 12:55:44 +0200 Subject: [PATCH] Restore trailing whitespaces to windows batch scripts --- launch-game.cmd | 2 +- utility.cmd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/launch-game.cmd b/launch-game.cmd index 34ab79dd3f..118350c95f 100644 --- a/launch-game.cmd +++ b/launch-game.cmd @@ -5,7 +5,7 @@ for %%x in (%*) do ( ) :choosemod -set /P mod=Select mod (ra, cnc, d2k, ts) or --exit: +set /P mod="Select mod (ra, cnc, d2k, ts) or --exit: " if /I "%mod%" EQU "--exit" (exit /b) if "%mod%" EQU "ra" (goto launchmod) if "%mod%" EQU "cnc" (goto launchmod) diff --git a/utility.cmd b/utility.cmd index e36139c1fe..67d0c99297 100644 --- a/utility.cmd +++ b/utility.cmd @@ -5,7 +5,7 @@ echo ---------------------------------------- echo. call OpenRA.Utility.exe echo Enter --exit to exit -set /P mod=Please enter a modname: OpenRA.Utility.exe +set /P mod="Please enter a modname: OpenRA.Utility.exe " if /I "%mod%" EQU "--exit" (exit /b) if /I "%mod%" EQU "ra" (goto help) if /I "%mod%" EQU "cnc" (goto help) @@ -30,7 +30,7 @@ echo --exit to exit echo --help to view the help echo --mod to choose a new mod echo. -set /P command=Please enter a command: OpenRA.Utility.exe %mod% +set /P command="Please enter a command: OpenRA.Utility.exe %mod% " if /I "%command%" EQU "--exit" (exit /b) if /I "%command%" EQU "--help" (goto help) if /I "%command%" EQU "--mod" (goto choosemod)