No longer hardcode the full path to git(1)

This commit is contained in:
Pierre Pronchery 2020-04-11 03:10:23 +02:00
parent b3edf60def
commit 729f9a20df
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ MIRROR="doc:doc"
PROGNAME_GIT_DOC="deforaos-git-doc.sh"
#executables
CONFIGURE="/usr/local/bin/configure"
GIT="/usr/bin/git"
GIT="git"
GIT_CLONE="$GIT clone -q"
MAKE="make"
MKTEMP="mktemp"

View File

@ -29,7 +29,7 @@ GIT_MIRROR="/home/defora/git"
GIT_REMOTE="origin"
PROGNAME_GIT_MIRROR="deforaos-git-mirror.sh"
#executables
GIT="/usr/bin/git"
GIT="git"
GIT_CLONE="$GIT clone -q"
GIT_FETCH="$GIT fetch -q"
GIT_RESET="$GIT reset -q"

View File

@ -30,7 +30,7 @@ GIT_REMOTE="https://git.defora.org"
PROGNAME_GIT_TESTS="deforaos-git-tests.sh"
#executables
CONFIGURE="/usr/local/bin/configure"
GIT="/usr/bin/git"
GIT="git"
GIT_CLONE="$GIT clone -q"
MAKE="make"
MKTEMP="mktemp"