Skip to content

Commit

Permalink
Merge pull request #2863 from input-output-hk/rvl/v2021-08-27/post-re…
Browse files Browse the repository at this point in the history
…lease

scripts/make_release.sh: handle errors when jira command fails
  • Loading branch information
rvl authored Sep 2, 2021
2 parents 15e582b + b8b43e4 commit 3dd2989
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ echo "Generating changelog into $CHANGELOG..."
echo ""

echo "Generating unresolved issues list into $KNOWN_ISSUES..."
( jira release-notes-bugs || echo "TBD" ) > $KNOWN_ISSUES
if ! jira release-notes-bugs > $KNOWN_ISSUES; then
echo "The \"jira release-notes-bugs\" command didn't work."
echo TBD > $KNOWN_ISSUES
fi
echo ""

echo "Filling in template into $OUT..."
Expand Down

0 comments on commit 3dd2989

Please sign in to comment.