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

Update install

This commit is contained in:
jarod5001 2022-05-04 20:30:42 +02:00 committed by GitHub
parent a3da35417d
commit 7e024f3d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@
source _common.sh source _common.sh
source ynh_composer__2 source ynh_composer__2
# source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
#================================================= #=================================================
# MANAGE SCRIPT FAILURE # MANAGE SCRIPT FAILURE
@ -155,8 +155,17 @@ ynh_add_systemd_config
#================================================= #=================================================
ynh_script_progression --message="Building Movim..." ynh_script_progression --message="Building Movim..."
ynh_install_composer --workdir="$final_path" --phpversion="$phpversion" # ynh_install_composer --phpversion="$phpversion" --workdir="$final_path"
ynh_composer_exec --workdir="$final_path" --commands="movim:migrate" --phpversion="$phpversion" curl -sS https://getcomposer.org/installer \
| COMPOSER_HOME="$final_path/.composer" \
php${phpversion} -- --quiet --install-dir="$final_path" \
|| ynh_die "Unable to install Composer."
# ynh_composer_exec --workdir="$final_path" --commands="movim:migrate" --phpversion="$phpversion"
COMPOSER_HOME="$final_path/.composer" \
php${phpversion} "$final_path/composer.phar" "movim:migrate" \
-d "$final_path" --quiet --no-interaction
ynh_exec_as $app php$phpversion $final_path/daemon.php config --username=$admin --password=$password --quiet --phpversion="$phpversion" ynh_exec_as $app php$phpversion $final_path/daemon.php config --username=$admin --password=$password --quiet --phpversion="$phpversion"
#================================================= #=================================================