1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00

Fix mysql query for version 3.8.4

This commit is contained in:
anmol 2018-11-20 12:54:53 +05:30
parent 60771e6c1b
commit 4012a99f4e

View file

@ -145,7 +145,7 @@ ynh_install_app_dependencies php-mbstring php5-cli 'php5-imagick|php-imagick' ph
#=================================================
# Check version and if this version was a fresh install push mysq query
if [ -z "$last_update" ] | [ "$version" == "3.8.4" ]; then
if [ -z "$last_update" ] && [ "$version" == "3.8.4" ]; then
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "../conf/sql/385.sql"
fi