I ran into the following bewildering error from `raco setup` and I was 
wondering if anyone knows what's going.

Here's a simple way to reproduce:

```
my-project
  scribblings/my-project.scrbl
  util.rkt
```

In the scribble file:

```
#lang scribble/manual
@require["../util.rkt"]
```

And in `util.rkt`:

```
#lang racket/base
(require slideshow)
```

Now when I run `raco setup my-project`, I get:

```

slideshow: expects [<slide-module-file>] on the command line, given 2 
arguments: setup my-project

  context...:
   /usr/share/racket/collects/setup/parallel-do.rkt:334:4: work-done method 
in list-queue%
   /usr/share/racket/collects/setup/parallel-do.rkt:284:17
   /usr/share/racket/collects/setup/parallel-do.rkt:238:4
   /usr/share/racket/pkgs/racket-index/setup/scribble.rkt:138:0: 
setup-scribblings
   /usr/share/racket/collects/setup/setup-core.rkt:71:0: setup-core
   "/usr/share/racket/collects/setup/main.rkt": [running body]
   for-loop
   run-module-instance!125
   "/usr/share/racket/collects/raco/main.rkt": [running body]
   for-loop
   run-module-instance!125
   perform-require!78


```

The error makes me think that `raco` is under the impression that I ran 
`slideshow setup my-project` -- or that it tried to run that on my behalf.  
What's odd is that I get no such problem when I use the `scribble` command 
directly on my scribble file.

I've reproduced this on Racket 7.0 and 7.1.  Any idea, what's going on?


-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to