1
0
mirror of synced 2026-01-04 09:06:46 -05:00
Files
docs/script/i18n/clone-translations.sh
2023-01-27 21:27:55 +00:00

12 lines
280 B
Bash
Executable File

#!/bin/bash
rm -rf translations
mkdir translations
for lang in "zh-cn" "es-es" "pt-br" "ru-ru" "ja-jp" "fr-fr" "de-de" "ko-kr"
do
(cd translations && git clone --depth 1 "https://github.com/github/docs-internal.$lang.git" $lang)
done
find . -name '.DS_Store' -type f -delete