We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc6629 commit c8de653Copy full SHA for c8de653
Makefile
@@ -14,8 +14,6 @@ build-deploy:
14
@echo "Building... (with Deploy)"
15
$(LISP) $(LISP_ARGS) --script './scripts/deploy.lisp'
16
17
-build-nix: install-ql build
18
-
19
download-ql:
20
@echo "Downloading Quicklisp..."
21
curl -O https://beta.quicklisp.org/quicklisp.lisp
@@ -25,6 +23,12 @@ install-ql: download-ql
25
23
$(LISP) $(LISP_ARGS) --load './quicklisp.lisp' --script './scripts/install-ql.lisp'
26
24
rm './quicklisp.lisp'
27
+install-ql-no-network:
+ @echo "Installing Quicklisp..."
28
+ $(LISP) $(LISP_ARGS) --load './scripts/quicklisp.lisp' --script './scripts/install-ql.lisp'
29
+
30
+build-nix: install-ql-no-network build
31
32
command-global:
33
./test/commands/global/run.sh
34
0 commit comments