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

Small typos

This commit is contained in:
ericgaspar 2020-12-02 09:48:44 +01:00
parent d13eb684c4
commit 9e51c9c5f5
No known key found for this signature in database
GPG key ID: 574F281483054D44
4 changed files with 6 additions and 9 deletions

View file

@ -25,8 +25,6 @@
incorrect_path=1
port_already_use=1
change_url=0
;;; Levels
Level 5=auto
;;; Options
Email=
Notification=none

View file

@ -49,7 +49,6 @@ ynh_backup --src_path="$final_path"
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================

View file

@ -169,8 +169,8 @@ mkdir -p $cache_dir
chown -R $app $cache_dir
cd "$final_path"
ynh_exec_as $app php"${phpversion}" composer.phar $app:migrate
php"${phpversion}" daemon.php config --username=$admin --password=$password
ynh_exec_as $app php$phpversion composer.phar $app:migrate
ynh_exec_as $app php$phpversion daemon.php config --username=$admin --password=$password
#=================================================
# GENERIC FINALIZATION

View file

@ -148,9 +148,9 @@ yunohost service add $app --description "Responsive web-based XMPP client" --log
(
cd "$final_path"
curl -sS https://getcomposer.org/installer | php${phpversion} -- --version="1.10.16" --install-dir="$final_path" \
&& php${phpversion} composer.phar config --global discard-changes true --quiet \
&& php${phpversion} composer.phar install --no-interaction --quiet
curl -sS https://getcomposer.org/installer | php$phpversion -- --version="1.10.16" --install-dir="$final_path" \
&& php$phpversion composer.phar config --global discard-changes true --quiet \
&& php$phpversion composer.phar install --no-interaction --quiet
)
#=================================================
@ -159,7 +159,7 @@ yunohost service add $app --description "Responsive web-based XMPP client" --log
ynh_script_progression --message="Configuring database.." --weight=1
(
cd "$final_path"
ynh_exec_as $app php${phpversion} composer.phar movim:migrate
ynh_exec_as $app php$phpversion composer.phar movim:migrate
)
#=================================================