1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

reordering PHP7.3 during install

This commit is contained in:
yalh76 2020-03-24 20:04:42 +01:00
parent 963a0d0fc9
commit fa276165c9

View file

@ -57,14 +57,14 @@ ynh_app_setting_set --app="$app" --key=app_key --value="$app_key"
#================================================= #=================================================
# STANDARD MODIFICATIONS # STANDARD MODIFICATIONS
#================================================= #=================================================
# INSTALL PHP7.3 when on Stretch # INSTALL PHP7.3
#================================================= #=================================================
if [ "$(lsb_release --codename --short)" = "stretch" ]; then if [ "$(lsb_release --codename --short)" = "buster" ]; then
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
else
ynh_print_info --message="Installing php7.3..." ynh_print_info --message="Installing php7.3..."
ynh_install_php --phpversion="7.3" --package="$extra_pkg_dependencies" ynh_install_php --phpversion="7.3" --package="$extra_pkg_dependencies"
else
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
fi fi
#================================================= #=================================================