dc049ce26a
# Conflicts: # Makefile
18 lines
390 B
Bash
Executable File
18 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
out=../aqt_data/locale/qt
|
|
mkdir -p "$out"
|
|
|
|
qtTranslations="$(python -c "from PyQt5.QtCore import *; import sys; sys.stdout.write(QLibraryInfo.location(QLibraryInfo.TranslationsPath))")"
|
|
unameOut="$(uname -s)"
|
|
|
|
case "${unameOut}" in
|
|
CYGWIN*)
|
|
qtTranslations="$(cygpath -u "${qtTranslations}")"
|
|
;;
|
|
esac
|
|
|
|
rsync -a "$qtTranslations"/qt* "$out"
|