From 2eefde8c67bb9e25133eda239f5da84297fb1581 Mon Sep 17 00:00:00 2001 From: max-barrera-2148 Date: Tue, 24 Sep 2024 12:16:05 -0500 Subject: [PATCH] Moved both the crowdin binary and crowdin-cli.jar to /usr/local/bin/. This ensures that the binary can find the .jar file. --- .github/workflows/crowdin.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index 8232666f..28c53f13 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -21,7 +21,8 @@ jobs: curl -s https://downloads.crowdin.com/cli/v3/crowdin-cli.zip -o crowdin-cli.zip unzip crowdin-cli.zip -d crowdin-cli sudo mv crowdin-cli/3.15.0/crowdin /usr/local/bin/ - sudo chmod +x /usr/local/bin/crowdin # <-- Add this line to make the binary executable + sudo mv crowdin-cli/3.15.0/crowdin-cli.jar /usr/local/bin/ # Move the jar file to the same location + sudo chmod +x /usr/local/bin/crowdin # Make the binary executable - name: Crowdin Sync run: |