Add script to copy English release notes
This commit is contained in:
parent
57c23085fb
commit
eb515a3f53
|
@ -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
|
Loading…
Reference in New Issue