cleaned up some more oopsies

This commit is contained in:
Max 2026-07-09 16:12:47 -05:00
parent 0872322fdf
commit c53aaec0e1
2 changed files with 1 additions and 10 deletions

View file

@ -175,15 +175,6 @@ jobs:
- name: Install attr
run: sudo apt-get install -y attr
- name: Install hfsprogs and libdmg-hfsplus
run: |
sudo apt-get install -y cmake hfsprogs
git clone https://github.com/mozilla/libdmg-hfsplus.git
cd libdmg-hfsplus && cmake . && make && cd ..
sudo mv libdmg-hfsplus/dmg/dmg /usr/local/bin/dmg
sudo mv libdmg-hfsplus/hfs/hfsplus /usr/local/bin/dmg-hfsplus
sudo rm -r libdmg-hfsplus
- name: Get version info
id: version_info
run: |

View file

@ -153,7 +153,7 @@ echo ""
echo "Creating .app archive"
pushd "$DMG_FOLDER"
tar --exclude "Ryujinx.app/Contents/MacOS/Ryujinx" -cvf "$RELEASE_TAR_FILE_NAME" Ryujinx.app 1> /dev/null
python3 "$BASE_DIR/distribution/misc/add_tar_exec.py" "$RELEASE_TAR_FILE_NAME" "Ryujinx.app/Contents/MacOS/Ryujinx" "Ryujinx.app/Contents/MacOS/Ryujinx"
python3 "$BASE_DIRECTORY/distribution/misc/add_tar_exec.py" "$RELEASE_TAR_FILE_NAME" "Ryujinx.app/Contents/MacOS/Ryujinx" "Ryujinx.app/Contents/MacOS/Ryujinx"
gzip -9 < "$RELEASE_TAR_FILE_NAME" > "$RELEASE_TAR_FILE_NAME.gz"
rm "$RELEASE_TAR_FILE_NAME"
popd