From 100454398cb720dacbd51e7efc3c3292d730f9bc Mon Sep 17 00:00:00 2001 From: FlexBy420 <68403300+FlexBy420@users.noreply.github.com> Date: Sat, 8 Mar 2025 00:35:16 +0100 Subject: [PATCH] Make suggested changes and remove unnecessary package --- .github/workflows/qt-ts.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/qt-ts.yml b/.github/workflows/qt-ts.yml index d8ab34f57c..a93937ddf2 100644 --- a/.github/workflows/qt-ts.yml +++ b/.github/workflows/qt-ts.yml @@ -15,18 +15,16 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@main - with: - fetch-depth: 0 - name: Install Qt Tools run: | - sudo apt-get update - sudo apt-get install -y qt6-tools-dev qt6-l10n-tools + sudo apt update + sudo apt install -y qt6-l10n-tools - name: Generate .ts file using lupdate (Qt) + working-directory: rpcs3 run: | - mkdir -p translations - cd rpcs3 # Change to the rpcs3 directory + mkdir -p ../translations LUPDATE_PATH=$(find /usr -name lupdate -type f 2>/dev/null | head -n 1) if [ -z "$LUPDATE_PATH" ]; then echo "Error: lupdate not found!"