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

Add patch for missing ynh_abort_if_errors in change_url scripts

This commit is contained in:
Alexandre Aubin 2021-02-22 18:58:25 +01:00
parent f6531db64e
commit c94a3c0008
3 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,10 @@
cd scripts/
if [ ! -e change_url ] || grep -q 'ynh_abort_if_errors' change_url
then
# The app doesn't has any change url script or already has ynh_abort_if_error
exit 0
fi
sed 's@\(source /usr/share/yunohost/helpers\)@\1\nynh_abort_if_errors@g' -i change_url

View file

@ -0,0 +1,2 @@
This is an ***automated*** patch to fix the lack of `ynh_abort_if_errors` in change_url script

View file

@ -0,0 +1 @@
Missing ynh_abort_if_errors in change_url scripts