We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baab6c9 commit 25ac898Copy full SHA for 25ac898
.github/workflows/macos-dmg.yml
@@ -69,15 +69,21 @@ jobs:
69
- name: Bundle app with gtk-mac-bundler
70
run: |
71
mkdir -p macos
72
- # Create bundler recipe if not in repo
73
- cat > macos/ssh-studio.bundle << 'XML'
+ BREW_PREFIX="$(brew --prefix)"
+ echo "Detected Homebrew prefix: $BREW_PREFIX"
74
+
75
+ cat > macos/ssh-studio.bundle << XML
76
<?xml version="1.0"?>
77
<app-bundle>
78
<id>io.github.BuddySirJava.SSH-Studio</id>
79
<name>SSH Studio</name>
80
<version>1.0.0</version>
81
<icon>data/media/icon_512.png</icon>
82
83
+ <prefixes>
84
+ <prefix>${BREW_PREFIX}</prefix>
85
+ </prefixes>
86
87
<main-binary>
88
<binary>ssh-studio</binary>
89
</main-binary>
0 commit comments