From de518d458b18257fd9b775bbd93fbf4c1c41fd7b Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 23 Mar 2016 13:30:17 -0400 Subject: [PATCH] ** info.rkt ignoring extra dirs This git repo has 2 folders that should be ignored by `raco setup` and `raco pkg install`. The new top-level `info.rkt` tells Racket to ignore them via: - `setup-collects` = `raco setup` should only compile these folders - `compile-omit-paths` = `raco pkg install` should ignore these folders --- info.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info.rkt b/info.rkt index 9a6d71c..c1fb9d6 100644 --- a/info.rkt +++ b/info.rkt @@ -1,7 +1,7 @@ #lang info (define collection 'multi) +(define setup-collects '("trivial")) (define compile-omit-paths '( - "compiled" "icfp-2016" "test" ))