Skip to content

Commit

Permalink
Add freescout:module-update command and --yes flag to tools/update.sh -
Browse files Browse the repository at this point in the history
closes #3384
  • Loading branch information
freescout-help-desk committed Sep 15, 2023
1 parent 70af65c commit d06dbcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ else
fi

printf "\nNew commits:\n";
git log "$branch..origin/$branch" --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
if [ $yes = false ]; then
git log "$branch..origin/$branch" --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
fi

printf "\nPull updates and continue? (Y/n) [n]:"
if [ $yes = true ]; then
Expand Down

0 comments on commit d06dbcb

Please sign in to comment.