mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-26 03:12:37 +00:00
20a6ba1dc3
/ = Local scripts ci = Remote scripts (run by workflow) util = Utilities
7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/bin/sh
|
|
SRC="$1"
|
|
DST="$2"
|
|
for LANG in "de" "el" "en" "es" "fr" "it" "nl" "pl" "pt" "ru" "sv" "zh-Hans"; do
|
|
cp $SRC/$LANG/* $DST/$LANG.lproj
|
|
done
|