mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix wrong usage of ynh_mysql_user_exists
This commit is contained in:
parent
b9197b6269
commit
1810808acd
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ ynh_mysql_remove_db () {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove mysql user if it exists
|
# Remove mysql user if it exists
|
||||||
if $(ynh_mysql_user_exists --user=$db_user); then
|
if ynh_mysql_user_exists --user=$db_user; then
|
||||||
ynh_mysql_drop_user $db_user
|
ynh_mysql_drop_user $db_user
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue