Skip to content

Commit

Permalink
Clean up README (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougkoch authored and achew22 committed Sep 30, 2018
1 parent 0a37513 commit db9dc18
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ A source file watcher for [Bazel](https://Bazel.build) projects
Ever wanted to save a file and have your tests automatically run? How about
restart your webserver when one of the source files change? Look no further.

Compile the `//ibazel` target inside this repo and copy the source file onto
your `$PATH`.

Then:
Install `ibazel` using one of the 3 methods [described below](#installation). Then:

```bash
# ibazel build //path/to/my:target
Expand Down Expand Up @@ -54,7 +51,13 @@ cd bazel-watcher
bazel build //ibazel
```

Now copy the generated binary onto your path.
Now copy the generated binary onto your path:

```bash
export PATH=$PATH:$PWD/bazel-bin/ibazel/$GOOS_$GOARCH_pure_stripped/ibazel
```

where `$GOOS` and `$GOARCH` are your host OS (e.g., `darwin` or `linux`) and architecture (e.g., `amd64`).

## Running a target

Expand Down

0 comments on commit db9dc18

Please sign in to comment.