mirror of
https://github.com/YunoHost/install_script.git
synced 2024-09-03 20:06:25 +02:00
forgotten double bracket fix
This commit is contained in:
parent
33e0684904
commit
918647940e
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ esac
|
|||
whiptail --title "Yunohost Installation" --yesno "Caution : your config files for postfix,dovecot,mysql,apache,ejabberd,radicale will be overwritten\nDo you want to proceed install of Yunohost?" 8 78
|
||||
YESNO=$?
|
||||
|
||||
if [ $YESNO -eq 0 ]
|
||||
if [[ $YESNO -eq 0 ]]
|
||||
then
|
||||
# Backup folder for legacy config files
|
||||
LEGACY=/etc/yunohost/.legacy
|
||||
|
|
Loading…
Add table
Reference in a new issue