Fix upgrade

This commit is contained in:
yalh76 2020-10-31 20:28:37 +01:00
parent a1304d33b6
commit 060bc63137
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