Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed ./joe to ./build/joe when "$1" == "run" #104

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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