git.fiddlerwoaroof.com
Browse code

bug: wget -> curl

Ed Langley authored on 30/06/2020 08:09:03
Showing 2 changed files
... ...
@@ -5,4 +5,4 @@ set -eu -o pipefail
5 5
 echo 'deb-src http://mirrors.kernel.org/debian/ buster main contrib' > /etc/apt/sources.list.d/src.list
6 6
 apt-get update -y
7 7
 apt-get dist-upgrade -y
8
-apt-get install -y sbcl git wget
8
+apt-get install -y sbcl git curl
... ...
@@ -9,7 +9,7 @@ apt-get build-dep -y sbcl
9 9
 
10 10
 cd /root
11 11
 
12
-wget https://beta.quicklisp.org/quicklisp.lisp -Oquicklisp.lisp
12
+curl https://beta.quicklisp.org/quicklisp.lisp -Oquicklisp.lisp
13 13
 /usr/local/bin/sbcl --load quicklisp.lisp --eval '(quicklisp-quickstart:install)' --quit
14 14
 rm quicklisp.lisp
15 15