Re: [racket-users] Distributing raco command without `raco`

2019-09-15 Thread Sage Gerard
Perfect, thank you. I'll put up a PR to add that as a margin note in https://docs.racket-lang.org/raco/command.html Original Message On Sep 15, 2019, 10:29 PM, Philip McGrath wrote: > In your "info.rkt", define `racket-launcher-names` and > `racket-launcher-libraries`, or `gra

Re: [racket-users] Distributing raco command without `raco`

2019-09-15 Thread Philip McGrath
In your "info.rkt", define `racket-launcher-names` and `racket-launcher-libraries`, or `gracket-launcher-names` and `gracket-launcher-libraries` for a GUI app: https://docs.racket-lang.org/raco/setup-info.html#(idx._(gentag._14._(lib._scribblings%2Fraco%2Fraco..scrbl))) Note that this is handled b

[racket-users] Distributing raco command without `raco`

2019-09-15 Thread Sage Gerard
If I release a package `foo` and want to distribute a command with it, I can make it into a raco command where users have to keep typing `raco foo-command`, etc. Javascript and Python ecosystems let me write a package such that I can install `foo` and the users can just run `foo-command`. Is t