diff --git a/SparkleShare/Mac/checkGit.sh b/SparkleShare/Mac/checkGit.sh index 05860b01..1893071a 100755 --- a/SparkleShare/Mac/checkGit.sh +++ b/SparkleShare/Mac/checkGit.sh @@ -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}