mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-27 11:52:36 +00:00
d8f5aed665
Refine symlink scripts too.
16 lines
325 B
Bash
Executable File
16 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run inside iOS/macOS/tvOS directory
|
|
|
|
for SRC in `ls -d */`; do
|
|
if [[ "$SRC" == "en-US/" ]] || [[ "$SRC" == "review_information/" ]]; then
|
|
echo "Skip $SRC"
|
|
continue
|
|
fi
|
|
DST="en-US"
|
|
echo "Symlink from $SRC to $DST"
|
|
cd $DST
|
|
ln -sf "../$SRC/release_notes.txt"
|
|
cd ..
|
|
done
|