-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS Ventura seems to have broken assh #72
Comments
Seeing the same issue. Also after delete/reinstall of the workflow (which also required the assh helper to be reenabled - dialog after open in Finder). |
Looking in the Console reveals that
|
@deanishe Any thoughts on this? |
@nigelm I ended up solving this myself by downloading the source code and building the The rebuilt file fixes the workflow and everything works as pre-Ventura. I have attached it to this comment, you just need to overwrite the Alternatively if you do not feel comfortable running a random binary, simply install the Go build tools with Homebrew and then |
thanks a lot🙏 |
Finally got around to testing this (had muddled through with the other ssh workflow which is nowhere near as nice as this one). The fix from @durzel worked. The only things I would add:-
$ git clone https://github.com/deanishe/alfred-ssh
$ cd alfred-ssh
$ GOOS=darwin GOARCH=amd64 go build -o assh_amd64 cmd/assh/assh.go
$ GOOS=darwin GOARCH=arm64 go build -o assh_arm64 cmd/assh/assh.go
$ lipo -create -output assh assh_* This gives you a Universal binary named |
Hi,
My SSH workflow is no longer work since upgrading to macOS Ventura (Intel). I have tried deleting and reinstalling the workflow, clearing Alfreds cache, with no success.
The debugger doesn't give much useful information - it appears the "assh" helper is killed as soon as it is executed. Possibly falling foul of some new System Integrity Protection?
I tried dtrace'ing the executable but didn't get any useful info out of it.
The text was updated successfully, but these errors were encountered: