Skip to content

Commit

Permalink
Move statements to the end
Browse files Browse the repository at this point in the history
 - As requested moved the statements at the end of the process
  • Loading branch information
cprieto authored and dlemstra committed Apr 3, 2020
1 parent e7c55cb commit 3c53ffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CloneRepositories.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ if not "%1"=="" set REPOS=%1
set TYPE="full"
if not "%2"=="" set TYPE=%2

set BASH="%USERPROFILE%\scoop\apps\git\current\bin\bash.exe"
if exist %BASH% goto EXECUTE

set BASH="%PROGRAMFILES%\Git\bin\bash.exe"
if exist %BASH% goto EXECUTE

Expand All @@ -18,6 +15,9 @@ if exist %BASH% goto EXECUTE
set BASH="%ProgramW6432%\Git\bin\bash.exe"
if exist %BASH% goto EXECUTE

set BASH="%USERPROFILE%\scoop\apps\git\current\bin\bash.exe"
if exist %BASH% goto EXECUTE

echo Failed to find bash.exe
echo %BASH%
exit /b 1
Expand Down

0 comments on commit 3c53ffc

Please sign in to comment.