tools-deps

2023-08-14T05:41:20.703369Z

@alexmiller I'm not sure this channel is suitable for repoting this problem, but the linux installation script seems breaking. For example, https://download.clojure.org/install/linux-install-1.11.1.1369.sh has the following command. > curl -O https://github.com/clojure/brew-install/releases/download/1.11.1.1369/clojure-tools-1.11.1.1369.tar.gz This command will create 0 byte file since http://github.com returns 302 . So the installation script should have curl -L -O ... command to download file correctly.

Alex Miller (Clojure team) 2023-08-14T05:50:54.688169Z

yes, I am working on moving towards this atm - there is now a newer version 1.11.1.1379

2023-08-14T05:56:19.451289Z

Thank you for your rapid fixing!

greg 2023-08-17T22:25:21.873799Z

@liquidz.uo have a look at the asdf. There is https://github.com/halcyon/asdf-clojurewritten by @halcyon to asdf fetching clojure binaries from github. You can have a globally set version of clojure, and locally set different versions (although the latter is less relevant for development with Clojure)