Skip to content
This repository has been archived by the owner on Oct 10, 2021. It is now read-only.

Commit

Permalink
fix(entrypoint.sh): Exclude property (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottBrenner committed Jun 19, 2021
1 parent 73f136c commit c431403
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ else
unknown_commits="--allow-unknown "
fi

changelog=$(generate-changelog "$changelog_type" -t "$previous_tag..$new_tag" "$exclude_types" "$unknown_commits" --file -)
# shellcheck disable=SC2086
changelog=$(generate-changelog "$changelog_type" -t "$previous_tag..$new_tag" ${exclude_types} "$unknown_commits" --file -)

changelog="${changelog//'%'/'%25'}"
changelog="${changelog//$'\n'/'%0A'}"
Expand Down

0 comments on commit c431403

Please sign in to comment.