mirror of https://github.com/PCSX2/pcsx2.git
12 lines
406 B
Bash
Executable File
12 lines
406 B
Bash
Executable File
#!/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.
|
|
"$SCRIPTDIR/../../../../tools/retry.sh" sudo apt-get -y install qt6-l10n-tools
|
|
|
|
PATH=/usr/lib/qt6/bin:$PATH "$SCRIPTDIR/../../../../pcsx2-qt/Translations/update_base_translation.sh"
|