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

remove Google Recaptcha removal

This commit is contained in:
yalh76 2020-03-25 20:13:25 +01:00
parent 8268225a04
commit 86983aaaef
2 changed files with 0 additions and 10 deletions

View file

@ -132,11 +132,6 @@ chown -R "$app": "$final_path"
ynh_install_composer --phpversion="7.3" --workdir="$final_path" ynh_install_composer --phpversion="7.3" --workdir="$final_path"
# Fix Google Recaptcha removal
ynh_secure_remove --file="$final_path/bootstrap/cache"
mkdir -p "$final_path/bootstrap/cache"
ynh_composer_exec --phpversion="7.3" --workdir="$final_path" --commands="dump-autoload"
#================================================= #=================================================
# SPECIFIC SETUP # SPECIFIC SETUP
#================================================= #=================================================

View file

@ -161,11 +161,6 @@ if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
sleep 3600 sleep 3600
fi fi
# Fix Google Recaptcha removal
ynh_secure_remove --file="$final_path/bootstrap/cache"
mkdir -p "$final_path/bootstrap/cache"
ynh_composer_exec --phpversion="7.3" --workdir="$final_path" --commands="dump-autoload"
ynh_composer_exec --phpversion="7.3" --workdir="$final_path" --commands="update" ynh_composer_exec --phpversion="7.3" --workdir="$final_path" --commands="update"
#================================================= #=================================================