From fa518af53d8b8a0b2f8a67072d173dce662e8a5b Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Mon, 6 Feb 2023 22:23:16 +0100 Subject: [PATCH] contrib: fix dmg creation in the release script --- contrib/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/release/release.sh b/contrib/release/release.sh index 3fa47c5b..ad019670 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -65,7 +65,7 @@ TARGET_DIR="$BUILD_DIR" ./contrib/reproducible/docker/docker-build.sh pip install ds_store mac_alias python3 ../contrib/release/macos/gen_dstore.py mv .DS_Store "$DMG_DIR/" - cp "$BUILD_DIR/gui/x86_64-apple-darwin/release/liana-gui" "$DMG_DIR/Liana.app/Contents/MacOS/" + cp "$BUILD_DIR/gui/x86_64-apple-darwin/release/liana-gui" "$DMG_DIR/Liana.app/Contents/MacOS/Liana" DMG_FILE="liana-$VERSION.dmg" xorrisofs -D -l -V Liana -no-pad -r -dir-mode 0755 -o "$DMG_FILE" "$DMG_DIR" cp "$DMG_FILE" "$RELEASE_DIR/"