From 4710b38505483a28d34f6c7b8df9683151bf6a0e Mon Sep 17 00:00:00 2001 From: FlexBy420 Date: Fri, 24 Oct 2025 14:08:09 +0200 Subject: [PATCH] linux support --- .ci/deploy-linux.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.ci/deploy-linux.sh b/.ci/deploy-linux.sh index fe6174fc78..9f917c8172 100755 --- a/.ci/deploy-linux.sh +++ b/.ci/deploy-linux.sh @@ -32,6 +32,14 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then # Remove git directory containing local commit history file rm -rf ./AppDir/usr/share/rpcs3/git + # Download translations + curl -fsSL "https://api.github.com/repos/RPCS3/rpcs3_translations/contents/qm" \ + | grep '"download_url":' \ + | cut -d '"' -f 4 \ + | while read -r url; do + curl -fsSL "$url" -o "./AppDir/usr/translations/$(basename "$url")" + done + curl -fsSLo /uruntime "https://github.com/VHSgunzo/uruntime/releases/download/v0.3.4/uruntime-appimage-dwarfs-$CPU_ARCH" chmod +x /uruntime /uruntime --appimage-mkdwarfs -f --set-owner 0 --set-group 0 --no-history --no-create-timestamp \