mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-12 10:52:08 +00:00
0b7b82129b
Co-authored-by: Davide De Rosa <keeshux@gmail.com>
9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
SRC="$1"
|
|
DST="$2"
|
|
LANG_FOLDERS=`cd $DST && ls -d *.lproj`
|
|
for FOLDER in $LANG_FOLDERS; do
|
|
LANG="${FOLDER%.lproj}"
|
|
cp $SRC/$LANG/* $DST/$LANG.lproj
|
|
done
|