bug fix line 29 and 31

I was working on a script of mine and I realized the way I wrote the test commands do not work. They need a space between the curly braces and a semicolon at the end in order to work.
This commit is contained in:
Jose A Mendoza 2016-07-17 15:06:09 -04:00 committed by GitHub
parent f882af5fa0
commit 8356cc3fc6

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}