mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
Fix stupid upgrade issue because destination dir doesn't exists
This commit is contained in:
parent
07fecdacbe
commit
8fd2eef57b
1 changed files with 8 additions and 7 deletions
|
@ -113,24 +113,25 @@ then
|
|||
else
|
||||
|
||||
# Create a temporary directory and backup smarty3 folder
|
||||
tmpdir="$(ynh_smart_mktemp 6000)"
|
||||
ynh_script_progression --message="Upgrading source files..."
|
||||
cp -a "$final_path/view/smarty3" "$tmpdir/view/smarty3"
|
||||
tmpdir="$(ynh_smart_mktemp 6000)"
|
||||
ynh_script_progression --message="Upgrading source files..."
|
||||
mkdir -p "$tmpdir/view/"
|
||||
cp -a "$final_path/view/smarty3" "$tmpdir/view/smarty3"
|
||||
|
||||
# Remove the app directory securely
|
||||
ynh_secure_remove "$final_path"
|
||||
# Remove the app directory securely
|
||||
ynh_secure_remove "$final_path"
|
||||
|
||||
# 1- Clone stable repo
|
||||
$git clone https://github.com/friendica/friendica.git -b stable "$final_path"
|
||||
|
||||
# Remove the addon directory securely
|
||||
ynh_secure_remove "$final_path/addon"
|
||||
ynh_secure_remove "$final_path/addon"
|
||||
|
||||
# 2 - Clone addons repo
|
||||
git clone https://github.com/friendica/friendica-addons.git -b stable "$final_path/addon"
|
||||
|
||||
# Restore the smarty3 folder
|
||||
cp -a "$tmpdir/view/smarty3" "${final_path}"
|
||||
cp -a "$tmpdir/view/smarty3" "${final_path}"
|
||||
ynh_secure_remove "$tmpdir"
|
||||
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue