removed the git dependency

I will probably auto-update WHY2 using CURL and some archive library (or just using system() :DD)
This commit is contained in:
Václav Šmejkal 2022-06-10 19:50:04 +02:00
parent 7d36275b2a
commit 03f362defd
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -10,9 +10,9 @@ fi
# Get COMMAND
if [[ $DISTRO == "Arch" ]]; then
COMMAND="pacman -S --needed gcc json-c curl make git"
COMMAND="pacman -S --needed gcc json-c curl make"
elif [[ $DISTRO == "Ubuntu" ]] || [[ $DISTRO == "Debian" ]]; then
COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev make git"
COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev make"
else
# 'Unsupported' distro
echo "It seems you are using unsupported distribution... Don't worry, just install 'gcc', 'json-c', 'curl' and 'make' and you'll be fine."