1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00

Fix upgrade error by changing rm options

Warning: yunohost.hook <lambda> - [1188.1] rm: cannot remove 'vendor/easybook/geshi': Directory not empty
This commit is contained in:
Gofannon 2020-05-15 12:50:50 +02:00
parent e42bed446d
commit af43ee6008

View file

@ -236,7 +236,7 @@ then
# Move to the dokuwiki installation folder so the "official" commands can be used without adaptation
cd $final_path
grep --extended-regexp --invert-match '^($|#)' data/deleted.files | xargs --max-args=1 rm --force --dir || true
grep --extended-regexp --invert-match '^($|#)' data/deleted.files | xargs --max-args=1 rm --force || true
)
fi