removed a space from the shebang line

main
m455 2019-03-23 15:29:06 -04:00
parent de1b5803b9
commit 4926453e56
1 changed files with 9 additions and 2 deletions

View File

@ -22,8 +22,15 @@ Now the default directory and todo list file have better default permissions:
# TL;DR # TL;DR
Run `./rodo.rkt` or, if you want an executable, run `raco exe rodo.rkt` to 1. Make sure [Racket](https://racket-lang.org/) is installed
compile the project into a single executable file, and then run that. 2. `git clone https://github.com/m455/rodo` into a directory of your choice
3. Run `racket rodo.rkt` or, if you want an executable, run `raco exe rodo.rkt` to compile the project into a single executable file, and then run that.
4. Add the following to your `$PATH` directory to run `rodo` from anywhere, depending on whether or not you are using the `rodo.rkt` file or a compiled executable file:
```
#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"
```
# Table of Contents # Table of Contents