From 64617ad2b0caca2b50a6ea14bbe752c286fa9f43 Mon Sep 17 00:00:00 2001 From: Nikita Galaiko Date: Mon, 20 Feb 2023 16:27:56 +0100 Subject: [PATCH] fix release path --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 2fe28e77d..e0141689a 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -183,7 +183,7 @@ jq '.package.version="'"$VERSION"'"' "$PWD/../src-tauri/tauri.conf.json" >"$TMP_ # build the app tauri build --config "$TMP_DIR/tauri.conf.json" -BUNDLE_DIR="$PWD/../src-tauri/target/release/bundle" +BUNDLE_DIR="./src-tauri/target/release/bundle" MACOS_DMG="$(find "$BUNDLE_DIR/dmg" -depth 1 -type f -name "*.dmg")" MACOS_UPDATER="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz")" MACOS_UPDATER_SIG="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz.sig")"