diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 20:39:00 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 20:39:00 +0000 |
commit | d328bfbbdf0f9853ec600d71c4372e843dcdbf8f (patch) | |
tree | 7eedecb26a7022d723f46c5396ec12eee147b030 | |
parent | fba391a6e80db15926db79a3cf889ed096fb7849 (diff) | |
download | cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.tar.gz cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.tar.bz2 cantedraw-d328bfbbdf0f9853ec600d71c4372e843dcdbf8f.zip |
Adjust Bob so we can use quickload the project to get all dependencies
-rw-r--r-- | bob.lisp | 10 | ||||
-rwxr-xr-x | build | 4 |
2 files changed, 9 insertions, 5 deletions
@@ -18,16 +18,18 @@ ;;; Code: +(pushnew (truename (uiop:getcwd)) + ql:*local-project-directories*) + (defpackage bob (:use :cl) (:export :build :load-all)) (in-package :bob) -(asdf:load-asd (merge-pathnames "cantedraw.asd" (uiop:getcwd))) +(defun load-all () + (ql:quickload :cantedraw :verbose t)) (defun build () + (load-all) (asdf:make :cantedraw)) - -(defun load-all () - (asdf:load-system :cantedraw)) @@ -1,5 +1,7 @@ #!/usr/bin/env sh set -xe -sbcl --load "./bob.lisp" \ + +sbcl --non-interactive \ + --load "./bob.lisp" \ --eval "(bob:build)" |