** 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
This commit is contained in:
ben 2016-03-23 13:30:17 -04:00
parent f54232c25c
commit de518d458b

View File

@ -1,7 +1,7 @@
#lang info
(define collection 'multi)
(define setup-collects '("trivial"))
(define compile-omit-paths '(
"compiled"
"icfp-2016"
"test"
))