mirror of
https://github.com/YunoHost/install_script.git
synced 2024-09-03 20:06:25 +02:00
Bugfixes
This commit is contained in:
parent
e6dcb2f9ce
commit
5410849456
1 changed files with 3 additions and 1 deletions
|
@ -156,7 +156,8 @@ then
|
|||
|
||||
echo -e "\n"
|
||||
whiptail --title "Post-installation" --yesno "Proceed to post-installation?" 8 78
|
||||
RESULT=$?
|
||||
YESNO=$?
|
||||
RESULT=1
|
||||
while [ $RESULT -gt 0 ]; do
|
||||
if [[ $YESNO -eq 0 ]]; then
|
||||
echo -e "\n"
|
||||
|
@ -165,6 +166,7 @@ then
|
|||
if [ $RESULT -gt 0 ]; then
|
||||
echo -e "\n"
|
||||
whiptail --title "Post-installation" --yesno "Post-installation failed, retry ?" 8 78
|
||||
let YESNO=$?
|
||||
fi
|
||||
else
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Reference in a new issue