13 lines
137 B
Bash
Executable File
13 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! git > /dev/null; then
|
|
echo "[OK] Git installed..."
|
|
exit 0;
|
|
|
|
else
|
|
echo "[FAILED] Git is not installed..."
|
|
exit 1
|
|
|
|
fi
|
|
|