Skip to content

Commit

Permalink
Merge pull request #734 from zentarul/master
Browse files Browse the repository at this point in the history
Fix missing double quotes after %DEBUG% in install.cmd
  • Loading branch information
spacewander authored Nov 2, 2018
2 parents 6e7766f + 700580a commit 7e10554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ SET COMMANDS_WITHOUT_REPO=git-alias git-extras git-fork git-setup

echo Installing binaries...
FOR /R "%GITEXTRAS%\bin" %%i in (*.*) DO (
IF "%DEBUG%=="true" ( ECHO "Writing File: %PREFIX%\bin\%%~ni" )
IF "%DEBUG%"=="true" ( ECHO "Writing File: %PREFIX%\bin\%%~ni" )

ECHO #^^!/usr/bin/env bash > "%PREFIX%\bin\%%~ni"
TYPE "%GITEXTRAS%\helper\reset-env" >> "%PREFIX%\bin\%%~ni"
Expand All @@ -120,7 +120,7 @@ FOR /R "%GITEXTRAS%\bin" %%i in (*.*) DO (
)

FOR %%i in (%COMMANDS_WITHOUT_REPO%) DO (
IF "%DEBUG%=="true" ( ECHO "Writing File: %PREFIX%\bin\%%i" )
IF "%DEBUG%"=="true" ( ECHO "Writing File: %PREFIX%\bin\%%i" )

ECHO #^^!/usr/bin/env bash > "%PREFIX%\bin\%%i"
TYPE "%GITEXTRAS%\helper\reset-env" >> "%PREFIX%\bin\%%i"
Expand Down

0 comments on commit 7e10554

Please sign in to comment.