aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2014-10-31 10:13:24 -0500
committerTristan Sloughter <[email protected]>2014-10-31 10:13:24 -0500
commitc83bbfc5f75ca8dda074ee38962a56389387b786 (patch)
treeec833283bd60c4bcdd1dafa21ec2bc5a2c9581a7
parent0b5c8714c76c10bd92463b4d2ba9431e34af650e (diff)
parent925b9c37834f4c8de32e0dd1665bbb2de61d013b (diff)
downloadrelx-c83bbfc5f75ca8dda074ee38962a56389387b786.tar.gz
relx-c83bbfc5f75ca8dda074ee38962a56389387b786.tar.bz2
relx-c83bbfc5f75ca8dda074ee38962a56389387b786.zip
Merge pull request #245 from syl20bnr/fix_relx_cmd_trailing_whitespaces
Fixes #238 Trailing whitespaces in generated relx.cmd
-rw-r--r--bootstrap.cmd8
1 files changed, 4 insertions, 4 deletions
diff --git a/bootstrap.cmd b/bootstrap.cmd
index 86ffc7f..cff8483 100644
--- a/bootstrap.cmd
+++ b/bootstrap.cmd
@@ -6,7 +6,7 @@
:: Create a shortcut file for running the relx command
@set relx_cmd=relx.cmd
-@echo @echo off > %relx_cmd%
-@echo setlocal >> %relx_cmd%
-@echo set relx=%%~f0 >> %relx_cmd%
-@echo escript ^"%%relx:.cmd=%%^" %%* >> %relx_cmd%
+@echo @echo off> %relx_cmd%
+@echo setlocal>> %relx_cmd%
+@echo set relx=%%~f0>> %relx_cmd%
+@echo escript ^"%%relx:.cmd=%%^" %%*>> %relx_cmd%