Skip to content
Snippets Groups Projects
Commit 045181a5 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing solution with zyppe

parent 516db95b
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,10 @@ elif [ x"$1" = x"linux" ]; then
commands[0]="su -c \"$pcman -Sy gcc-fortran\""
commands[1]="sudo $pcman -Sy gcc-fortran"
possible_solutions "${commands[@]}"
elif [ x"$pcman" == x"zypper" ]; then
commands[0]="su -c \"$pcman install gcc-fortran\""
commands[1]="sudo $pcman install gcc-fortran"
possible_solutions "${commands[@]}"
elif [ x"$pcman" == x"apt-get" ]; then
commands[0]="su -c \"$pcman install gfortran\""
commands[1]="sudo $pcman install gfortran"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment