Merge pull request #1708 from orien3243/patch-2

bug fix line 29 and 31
This commit is contained in:
Hylke Bons 2016-07-17 22:50:29 +01:00 committed by GitHub
commit e37a8a4172

View file

@ -26,9 +26,9 @@ then
curl -s https://www.kernel.org/pub/software/scm/git/git-${gitVersion}.tar.gz > git.tar.gz
test -e git.tar.gz || {echo "Failed to download git"; exit 1}
test -e git.tar.gz || { echo "Failed to download git"; exit 1; }
test "$file_hash" = "$list_hash" || {echo "SHA256 Mistmatch" ;exit 1}
test "$file_hash" = "$list_hash" || { echo "SHA256 Mistmatch"; exit 1; }
tar xf git.tar.gz
cd git-${gitVersion}