mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-01 05:22:13 +00:00
8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/bin/bash
|
||
|
. .env.$1
|
||
|
|
||
|
RELEASE_NOTES="$DELIVER_METADATA_PATH/en-US/release_notes.txt"
|
||
|
STRIPPED_ISSUES_SUB="s/^(.*)\. \[.*$/\1./"
|
||
|
|
||
|
ci/latest-changelog.sh $1 | sed -E "$STRIPPED_ISSUES_SUB" >"$RELEASE_NOTES"
|