mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
Merge pull request #37 from YunoHost-Apps/rm-r
App using rm -rf that was unspotted so far ... to be reported as error by the linter
This commit is contained in:
commit
2738870563
1 changed files with 3 additions and 3 deletions
|
@ -82,11 +82,11 @@ fi
|
|||
|
||||
# Remove files for upgrade compatibilty from previous versions of Friendica
|
||||
if [ -f $final_path/.htconfig.php ]; then
|
||||
rm "$final_path/.htconfig.php"
|
||||
ynh_secure_remove "$final_path/.htconfig.php"
|
||||
fi
|
||||
|
||||
if [ -f $final_path/.htconfig.php ]; then
|
||||
rm "$final_path/config/local.ini.php"
|
||||
ynh_secure_remove "$final_path/config/local.ini.php"
|
||||
fi
|
||||
|
||||
|
||||
|
@ -121,7 +121,7 @@ ynh_replace_string --match_string="OPEN" --replace_string="CLOSED" --target_fil
|
|||
|
||||
|
||||
#Copy Addons
|
||||
rm -Rf "$final_path/addon"
|
||||
ynh_secure_remove "$final_path/addon"
|
||||
ynh_setup_source --dest_dir="$final_path/addon" --source_id="addons"
|
||||
|
||||
# 3 - some extra folders
|
||||
|
|
Loading…
Reference in a new issue