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

@@ -1,6 +1,6 @@
{
"name": "sscripts",
"version": "1.0.4",
"version": "1.0.5",
"description": "Useful Shell scripts for projects",
"author": "sHa <sha@shadoll.dev>",
"license": "MIT",

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