At Fri, 17 Apr 2015 06:30:35 -0700 (PDT), Thomas Lynch wrote:
> Yes, db-lib.rkt is there in the liquid-lib/liquid directory .. as is 
> db-lib.scribl is here in the liquid-doc/liquid dir.   Here are the details:
> 
> raco setup: error: during making for <pkgs>/liquid-doc/liquid
> raco setup:   liquid/liquid.scrbl:14:17: include-section: not a module path
> raco setup:     at: "\"db-lib.scrbl\""
> raco setup:     in: (include-section "\"db-lib.scrbl\"")

I wonder if you're written

 @include-section{"db-lib.scrbl"}

instead of

 @include-section{db-lib.scrbl}

or

 @include-section["db-lib.scrbl"]

?


If you include the quote marks in {...}, then it's equivalent to

 @(include-section "\"db-lib.scrbl\"")

which could be why it shows up that way in the error message.

The second and third forms above are both equivalent to

 @(include-section "db-lib.scrbl")

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-dev/20150417143320.23B4C6501C6%40mail-svr1.cs.utah.edu.
For more options, visit https://groups.google.com/d/optout.

Reply via email to