Add formatting check for shell scripts (#106)

This commit is contained in:
Muhammad Atif Ali
2023-12-16 17:39:08 +03:00
committed by GitHub
parent 1e7f91231c
commit 1e3bd2b04b
18 changed files with 137 additions and 122 deletions

View File

@@ -18,7 +18,7 @@ if [ -z "$CLONE_PATH" ]; then
fi
# Check if `git` is installed...
if ! command -v git >/dev/null; then
if ! command -v git > /dev/null; then
echo "Git is not installed!"
exit 1
fi