> OK, so that sorts out getting a clone of the repository I need to work > on. Now how do I invoke racket so that this clone is loaded instead of > the version bundled with Racket?
You can change your PATH environment variable to include the clone's racket/bin/ folder, or add a symlink from the clone's racket/bin/racket to a directory that is on your path. When I set up my clone, I ran something like: $ ln -s `pwd`/racket/bin/racket /usr/local/bin/racket -- 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/CAFUu9R5bRd5%2BqJfReCkx%2BAuAcOrB7tMvq5fXrF%2B3ridihbgNvQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
