X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=wolf;a=blobdiff_plain;f=src%2Fmain%2Fstyle-checker.asd;fp=src%2Fmain%2Fstyle-checker.asd;h=29862ff9c857b348fea869a2c8b528fa32cce62e;hp=f5bc95d3fda5eaa44bf9f3653b5a7747babc8c1a;hb=7e7aae4d5b9f8e53bf88c10996c29ff57f358c3b;hpb=8c769fe7229a74e60b03db471c98b5e8955a0f5c diff --git a/src/main/style-checker.asd b/src/main/style-checker.asd index f5bc95d..29862ff 100644 --- a/src/main/style-checker.asd +++ b/src/main/style-checker.asd @@ -1,20 +1,8 @@ -; The systems are split up into two because travis will run more smoothly -; if we use a custom built sbcl that has all the deps pre-loaded since -; we are sure those will work just fine :) -; -; You should link to this file in your systems directory, or however you -; handle your asdf configurations. Then just (asdf:load-system :clnl) -; -; There's probably a better way, but I don't know it - -(asdf:defsystem style-checker.internal - :serial t - :components ((:file "package") (:file "syntax-checker"))) - (asdf:defsystem style-checker :name "Style Checker" :version "0.1" :maintainer "Frank Duncan (frank@kank.com)" :author "Frank Duncan (frank@kank.com)" + :components ((:file "package") (:file "syntax-checker")) :serial t - :depends-on (:cl-ppcre :style-checker.internal)) + :depends-on #-travis (:cl-ppcre) #+travis nil) ; We don't load up systems if in travis mode