I was redeploying an AWS beanstalk application. I was installing clojure using the commands from the clojure install guide for posix
commands:
01_install_clojure:
command: |
curl -L -O https://github.com/clojure/brew-install/releases/latest/download/posix-install.sh
chmod +x posix-install.sh
sudo ./posix-install.sh
I believe this used to work, but it now fails with
./posix-install.sh: line 30: shasum: command not found
Using the linux instructions worked just fine. I can provide more info about the linux envorionment, but it was using aws' "Corretto 17 running on 64bit Amazon Linux 2023/4.10.0" platform which is one of the builtin java platforms for beanstalk.