Skip to content
Snippets Groups Projects
Commit 287072dc authored by Ethan Robert's avatar Ethan Robert
Browse files

Fixed error in install-unix.sh

parent 6cdc8bfb
Branches
No related tags found
No related merge requests found
Pipeline #60092 failed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment