Skip to content

Commit

Permalink
use curl instead of wget when bootstrapping.
Browse files Browse the repository at this point in the history
wget is not always available by default.
  • Loading branch information
phronmophobic committed Aug 19, 2024
1 parent 4931b4f commit f2a0c18
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ set -x
apt -y update
DEBIAN_FRONTEND=noninteractive apt -y install emacs-lucid openjdk-18-jre-headless rlwrap awscli unzip leiningen git build-essential

wget https://download.clojure.org/install/linux-install.sh
curl -O https://download.clojure.org/install/linux-install.sh
chmod 755 linux-install.sh
./linux-install.sh
clojure -P

wget https://raw.githubusercontent.com/phronmophobic/dev-env/master/.simpleemacs
curl -O https://raw.githubusercontent.com/phronmophobic/dev-env/master/.simpleemacs
mv .simpleemacs ~/.emacs




0 comments on commit f2a0c18

Please sign in to comment.