10 lines
206 B
Bash
10 lines
206 B
Bash
|
#!/bin/sh
|
||
|
CHANGELOG="CHANGELOG.txt"
|
||
|
PLATFORMS="iOS macOS tvOS"
|
||
|
|
||
|
for PLATFORM in $PLATFORMS; do
|
||
|
DST="fastlane/metadata/$PLATFORM/en-US/release_notes.txt"
|
||
|
rm -f "$DST"
|
||
|
cp "$CHANGELOG" "$DST"
|
||
|
done
|