This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-27
Channels
- # babashka (45)
- # beginners (44)
- # calva (3)
- # cider (14)
- # clara (4)
- # clj-commons (3)
- # clj-otel (4)
- # cljsjs (1)
- # cljsrn (111)
- # clojars (5)
- # clojure (62)
- # clojure-europe (14)
- # clojure-nl (2)
- # clojure-uk (4)
- # clojurescript (31)
- # community-development (16)
- # conjure (7)
- # cursive (9)
- # data-science (1)
- # datalevin (10)
- # docker (1)
- # emacs (20)
- # fulcro (7)
- # helix (10)
- # jobs (4)
- # lsp (22)
- # malli (35)
- # meander (12)
- # music (1)
- # nbb (2)
- # off-topic (5)
- # pathom (3)
- # quil (1)
- # re-frame (12)
- # react (6)
- # reagent (18)
- # releases (1)
- # remote-jobs (1)
- # rewrite-clj (4)
- # ring (1)
- # shadow-cljs (10)
- # spacemacs (9)
- # tools-build (17)
I often use libs with the ful name when experimenting, example : clojure.string/split Can lsp help refactoring those into proper require ?
just confirming that the ARM version isn't available via homebrew yet?
ok thank you
I thought things were already working for m1 as we manually added the zip file to it and all files were changed
@UKFSJSM38 As you know yourself, the brew recipe is updated on release and it uses the assets in github actions during the release. This is a bit brittle since this only allows you to update the brew formula when you trigger a release.
Of course this could be rewritten to a cron job on github actions in the formula repo which updates that repo like every day or so or on demand when you trigger it. And/or a script that you can just run locally to update the formula.
apologies for being a total pest here @UKFSJSM38 - are you likely to update the brew recipes soon? otherwise i'll just manually install the GH release so long 🙂
Also the install
script still needs to be updated btw:
https://github.com/clojure-lsp/clojure-lsp/blob/13e78e3af8082780ebab21a21166ad9598c27562/install#L87
uname -m
returns arm64
on macos m1
I can change that in a PR if you want
curl -s > /tmp/clojure-lsp-install
chmod +x /tmp/clojure-lsp-install
/tmp/clojure-lsp-install --dir /tmp
thank you!