Signal-iOS/Scripts/set_release_notes
Jordan Rose a91efa9718 set_release_notes: support EDITOR with arguments
And conversely, quote the base directory in case it has spaces in the
path. The script is now Shellcheck-clean.
2022-05-25 15:59:47 -07:00

14 lines
353 B
Bash
Executable File

#!/usr/bin/env bash
set -x
set -e
BASE_DIR=$(git rev-parse --show-toplevel)
METADATA_ROOT="$BASE_DIR/fastlane/metadata"
# Open the editor for entering the changelog
${VISUAL:-${EDITOR:-vi}} "${METADATA_ROOT}/en-US/release_notes.txt"
"${BASE_DIR}"/Scripts/translation/push-metadata-source
"${BASE_DIR}"/Scripts/translation/pull-metadata-translations