Merge pull request #4 from YunoHost-Apps/testing

Fix upgrade
This commit is contained in:
yalh76 2020-10-31 20:29:01 +01:00 committed by GitHub
commit a92926e976
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -86,9 +86,9 @@ ynh_script_progression --message="Setting up source files..."
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
git clone $source $final_path
git clone $source $final_path --quiet
pushd "$final_path"
git checkout $COMMIT
git checkout $COMMIT --quiet
popd
#=================================================

View file

@ -89,8 +89,9 @@ then
# Download, check integrity, uncompress and patch the source from app.src
pushd "$final_path"
git pull
git checkout $COMMIT
git checkout master
git pull --quiet
git checkout $COMMIT --quiet
popd
fi