Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,18 @@ Make sure to add the location of the binary to your `$PATH`.
### Option 2: From source

```bash
$ git clone git@github.com:karan/joe.git
$ git clone https://github.com/karan/joe.git
$ cd joe/
$ chmod +x tool.sh
$ ./tool.sh build
$ cd ~/bin
$ sudo ln -s /path/to/joe/build/joe joe
```

### Option 3: Pip

```bash
$ pip install joe
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion tool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if [ "$1" == "deps" ]; then
elif [ "$1" == "build" ]; then
build
elif [ "$1" == "run" ]; then
build && ./joe
build && ./build/joe
else
usage;
fi