Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grapp-installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ethan Robert
grapp-installer
Commits
509bfb51
Commit
509bfb51
authored
1 month ago
by
Ethan Robert
Browse files
Options
Downloads
Patches
Plain Diff
Fixed error in install-unix.sh: background task for download link (bad syntax)
parent
287072dc
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#60095
failed
1 month ago
Stage: install
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install-unix.sh
+5
-5
5 additions, 5 deletions
install-unix.sh
with
5 additions
and
5 deletions
install-unix.sh
+
5
−
5
View file @
509bfb51
...
...
@@ -7,24 +7,24 @@ echo "Installing Graphviz..."
if
[[
"
$OSTYPE
"
==
"darwin"
*
]]
;
then
# macOS
brew
install
graphviz
curl
brew
install
graphviz
wget
elif
[[
-f
/etc/debian_version
]]
;
then
# Debian/Ubuntu
sudo
apt update
sudo
apt
install
-y
graphviz
curl
unzip
sudo
sudo
apt
install
-y
graphviz
wget
unzip
sudo
elif
[[
-f
/etc/arch-release
]]
;
then
# Arch
sudo
pacman
-Syu
--noconfirm
graphviz
curl
unzip
sudo
sudo
pacman
-Syu
--noconfirm
graphviz
wget
unzip
sudo
elif
[[
-f
/etc/fedora-release
]]
;
then
# Fedora
sudo
dnf
install
-y
graphviz
curl
unzip
sudo
sudo
dnf
install
-y
graphviz
wget
unzip
sudo
else
echo
"Unsupported OS"
exit
1
fi
echo
"Getting the latest version of Grapp..."
curl
https://gitlab.univ-lille.fr/iovka.boneva/grapp/-/raw/master/binaries/Grapp.zip?ref_type
=
heads
&inline
=
false
>
Grapp.zip
wget
https://gitlab.univ-lille.fr/iovka.boneva/grapp/-/raw/master/binaries/Grapp.zip?ref_type
=
heads
echo
"Extracting Grapp.zip..."
unzip Grapp.zip
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment