diff --git a/README.md b/README.md index 2387f41..e55b0b6 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ A minimal list manager for people who live on the command line. # Table of Contents - [Quick start](#quick-start) + - [Creating a wrapper](#creating-a-wrapper) - [Getting started](#getting-started) - [Conventions used in this readme](#conventions-used-in-this-readme) - [Platforms](#platforms) @@ -55,20 +56,16 @@ command line environment, or scripting. * To use rodo as an single-file executable follow the steps below: 1. Run `raco exe rodo.rkt` to compile rodo into a single-file executable 2. Run `./rodo` -5. (optional) Create a wrapper in your `$PATH` directory to run rodo from anywhere: + 3. Optional: Move the single-file executable, `rodo`, to your `$PATH` + +## Creating a wrapper +Create a wrapper in your `$PATH` directory to run rodo from anywhere: ``` #!/usr/bin/env bash racket ~/path/to/rodo.rkt "$@" ``` -If you are using a single-file executable, create a wrapper as follows: - -``` -#!/usr/bin/env bash -~/path/to/rodo "$@" -``` - # Getting started This readme will guide you through downloading, setting up, and using the rodo diff --git a/rodo-distributable/bin/rodo b/rodo-distributable/bin/rodo new file mode 100755 index 0000000..9db5835 Binary files /dev/null and b/rodo-distributable/bin/rodo differ diff --git a/rodo-distributable/lib/plt/racket3m-7.2 b/rodo-distributable/lib/plt/racket3m-7.2 new file mode 100755 index 0000000..c3168d0 Binary files /dev/null and b/rodo-distributable/lib/plt/racket3m-7.2 differ