From eb515a3f53eedf09bbeba2a4243b711d6fadbc61 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Sat, 27 Jul 2019 10:02:07 +0200 Subject: [PATCH] Add script to copy English release notes --- ci/copy-release-notes.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 ci/copy-release-notes.sh diff --git a/ci/copy-release-notes.sh b/ci/copy-release-notes.sh new file mode 100755 index 00000000..5288c93f --- /dev/null +++ b/ci/copy-release-notes.sh @@ -0,0 +1,14 @@ +#!/bin/sh +METADATA="release_notes" +RX='^[a-z]{2}(\-[A-z]+)?$' +cd fastlane/metadata +for LANG in `ls -d *`; do + if [[ $LANG == "en-US" ]]; then + continue + fi + if [[ ! $LANG =~ $RX ]]; then + continue + fi + #echo $LANG + cp en-US/$METADATA.txt $LANG +done