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

Eliminating double comtinue, fix Accept and continue install process

parent d28a908e
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ if [ x"$configure_options" == x"" ]; then
fi
if [ $sq -eq 0 ]; then
unset commands
commands[0]="continue"
# commands[0]="continue"
possible_solutions "${commands[@]}"
fi
......
......@@ -30,7 +30,7 @@ function possible_solutions {
if [ -a input_install ]; then
eval ${commands[$possible_solutions_ret]} < input_install
else
eval ${commands[$possible_solutions_ret]}
eval ${commands[$possible_solutions_ret]}
fi
possible_solutions_command=${commands[$possible_solutions_ret]}
}
......@@ -59,7 +59,9 @@ function possible_solutions_no_continue {
if [ -a input_install ]; then
eval ${commands[$possible_solutions_ret]} < input_install
else
eval ${commands[$possible_solutions_ret]}
if [ x"${commands[$possible_solutions_ret]}" != x"Accept and continue" ]; then
eval ${commands[$possible_solutions_ret]}
fi
fi
possible_solutions_command=${commands[$possible_solutions_ret]}
}
......
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