From fafb8e8870a5bc1ef9760fc6594b7e481ab1bcd5 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 10 Jun 2022 18:21:03 +0200 Subject: [PATCH] added git to required dependencies --- configure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.sh b/configure.sh index 2f26289..b7d3ac7 100644 --- a/configure.sh +++ b/configure.sh @@ -10,9 +10,9 @@ fi # Get COMMAND if [[ $DISTRO == "Arch" ]]; then - COMMAND="pacman -S --needed gcc json-c curl make" + COMMAND="pacman -S --needed gcc json-c curl make git" elif [[ $DISTRO == "Ubuntu" ]] || [[ $DISTRO == "Debian" ]]; then - COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev make" + COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev make git" 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."