Skip to content

Commit

Permalink
Fixes git call to be case-sensitive
Browse files Browse the repository at this point in the history
On my Ubuntu machine `command -v GIT` finds nothing,
while `command -v git` finds the `git` executable perfectly
well.
  • Loading branch information
Boldewyn authored and augustohp committed Sep 23, 2019
1 parent 29e07cd commit bca7be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ship
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ OPTION_FORCE_RECREATION=""
OPTION_SHELL_TEST="bash ash"

ENTRYPOINT="main"
GIT=$(command -v GIT)
GIT=$(command -v git)
DOCKER=$(command -v docker)

if [ -n "$DEBUG" ]
Expand Down

0 comments on commit bca7be7

Please sign in to comment.