1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00

Update upgrade

This commit is contained in:
Memo 2022-04-05 20:55:49 +02:00 committed by GitHub
parent 0eedd3d5ef
commit 9942c72676
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,17 +90,6 @@ then
if [ `cd $final_path && git rev-parse --is-inside-work-tree` ];
then
pushd "$final_path"
if [ $update -eq 1 ]
then
git fetch --quiet origin tag $latest_tag --no-tags
git checkout --quiet $latest_tag
else
git fetch --quiet origin tag $tag --no-tags
git checkout --quiet $tag --quiet
fi
ynh_secure_remove --file="$final_path/bootstrap/cache/*"
ynh_secure_remove --file="$final_path/vendor/"
popd
else
ynh_script_progression --message="Upgrading source files..."
# Create a temporary directory
@ -116,18 +105,10 @@ then
cp -aT "$final_path/storage/export" "$tmpdir/storage/export/"
ynh_secure_remove --file="$final_path"
# Download, check integrity, uncompress and patch the source from app.src
if [ $update -eq 1 ]
then
git clone --quiet -b $latest_tag --depth 1 https://github.com/firefly-iii/firefly-iii.git $final_path
else
git clone --quiet -b $tag --depth 1 https://github.com/firefly-iii/firefly-iii.git $final_path
fi
ynh_secure_remove bootstrap/cache/*
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir=$final_path
ynh_secure_remove bootstrap/cache/*
# Restore the config file and data
mkdir -p "$final_path/storage/upload/"
mkdir -p "$final_path/storage/export/"