mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-24 02:21:00 +00:00
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
|