Skip to content

Commit

Permalink
Script cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Nov 25, 2021
1 parent 8919ef2 commit 9ba13ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions etc/scripts/generate-changelog.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
: ${FROM_TAG?"Need to set FROM_TAG variable"}
: ${TO_TAG?"Need to set TO_TAG variable"}
git log ${FROM_TAG}...${TO_TAG} --pretty=format:'* %s [View commit](http://github.com/ical4j/ical4j/commit/%H)' --reverse | grep -v Merge
: "${FROM_TAG?'Need to set FROM_TAG variable'}"
: "${TO_TAG?'Need to set TO_TAG variable'}"
git log "${FROM_TAG}...${TO_TAG}" --pretty=format:'* %s [View commit](http://github.com/ical4j/ical4j/commit/%H)' --reverse | grep -v Merge

0 comments on commit 9ba13ca

Please sign in to comment.