pcsx2/.github/workflows/scripts/common/update_base_translation.sh

12 lines
406 B
Bash
Raw Normal View History

2023-07-17 11:21:30 +00:00
#!/bin/bash
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
set -e
# While we use custom Qt builds for our releases, the Qt6 package will be good enough
# for just updating translations. Saves building it for this action alone.
2024-04-25 06:55:51 +00:00
"$SCRIPTDIR/../../../../tools/retry.sh" sudo apt-get -y install qt6-l10n-tools
2023-07-17 11:21:30 +00:00
PATH=/usr/lib/qt6/bin:$PATH "$SCRIPTDIR/../../../../pcsx2-qt/Translations/update_base_translation.sh"