Skip to content

Commit

Permalink
Fix for trampoline command parsing on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
mebaran authored and technomancy committed Apr 30, 2012
1 parent 3654228 commit e474ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lein.bat
Expand Up @@ -169,7 +169,7 @@ goto EOF
:: characters inside the TRAMPOLINE_FILE.
setLocal DisableDelayedExpansion

if "%1" == "trampoline" (goto RUN_TRAMPOLINE) else (goto RUN_NORMAL)
if %1 == "trampoline" (goto RUN_TRAMPOLINE) else (goto RUN_NORMAL)

:RUN_TRAMPOLINE
set "TRAMPOLINE_FILE=%TEMP%\lein-trampoline-%RANDOM%.bat"
Expand Down

0 comments on commit e474ad2

Please sign in to comment.