This commit is contained in:
sHa
2019-06-07 10:56:18 +03:00
parent d098770052
commit 0f40a55db3
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ fi
git --version 2>&1 >/dev/null
GIT_IS_AVAILABLE=$?
if [ ! $GIT_IS_AVAILABLE -eq 0 ]; then
if [ $GIT_IS_AVAILABLE -ne 0 ]; then
echo "ERROR: The program 'git' is currently not installed."
echo "Try: 'sudo apt install git' to install it"
exit 1