From 287072dc35c88f635f6bb04a1c77c677030981ca Mon Sep 17 00:00:00 2001 From: Ethan Robert <ethan.rbrt90@gmail.com> Date: Thu, 13 Mar 2025 14:36:00 +0100 Subject: [PATCH] Fixed error in install-unix.sh --- install-unix.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install-unix.sh b/install-unix.sh index 2a5719b..ad1c7d6 100755 --- a/install-unix.sh +++ b/install-unix.sh @@ -7,24 +7,24 @@ echo "Installing Graphviz..." if [[ "$OSTYPE" == "darwin"* ]]; then # macOS - brew install graphviz wget + brew install graphviz curl elif [[ -f /etc/debian_version ]]; then # Debian/Ubuntu sudo apt update - sudo apt install -y graphviz wget unzip sudo + sudo apt install -y graphviz curl unzip sudo elif [[ -f /etc/arch-release ]]; then # Arch - sudo pacman -Syu --noconfirm graphviz wget unzip sudo + sudo pacman -Syu --noconfirm graphviz curl unzip sudo elif [[ -f /etc/fedora-release ]]; then # Fedora - sudo dnf install -y graphviz wget unzip sudo + sudo dnf install -y graphviz curl unzip sudo else echo "Unsupported OS" exit 1 fi echo "Getting the latest version of Grapp..." -wget https://gitlab.univ-lille.fr/iovka.boneva/grapp/-/raw/master/binaries/Grapp.zip?ref_type=heads&inline=false +curl https://gitlab.univ-lille.fr/iovka.boneva/grapp/-/raw/master/binaries/Grapp.zip?ref_type=heads&inline=false > Grapp.zip echo "Extracting Grapp.zip..." unzip Grapp.zip -- GitLab