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

Fixing zypper installation

parent aff94367
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install autoconf"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret autoconf\""
commands[1]="sudo $pc_install_command_ret autoconf"
possible_solutions "${commands[@]}"
......
......@@ -14,7 +14,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install automake"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret automake\""
commands[1]="sudo $pc_install_command_ret automake"
possible_solutions "${commands[@]}"
......
......@@ -15,7 +15,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install cmake"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret cmake\""
commands[1]="sudo $pc_install_command_ret cmake"
possible_solutions "${commands[@]}"
......
......@@ -16,7 +16,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install libtool"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret libtool\""
commands[1]="sudo $pc_install_command_ret libtool"
possible_solutions "${commands[@]}"
......
......@@ -14,7 +14,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install autoconf"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret python\""
commands[1]="sudo $pc_install_command_ret python"
possible_solutions "${commands[@]}"
......
......@@ -14,7 +14,7 @@ if [ x"$1" = x"osx" ]; then
commands[0]="$pcman install wget"
possible_solutions "${commands[@]}"
elif [ x"$1" = x"linux" ]; then
pc_install_command $pcman
pc_install_command "$pcman"
commands[0]="su -c \"$pc_install_command_ret wget\""
commands[1]="sudo $pc_install_command_ret wget"
possible_solutions "${commands[@]}"
......
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