Skip to content

Commit

Permalink
Update README.md: add instructions for cleaning up development install (
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-hu authored and Zachary Scott committed Jul 31, 2018
1 parent 046fe90 commit e58a277
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ $ make
$ make test
```

### 4. Cleaning up installed binary

If you ran `go install` at some point, you will have a development version of `circleci-cli` lingering around. You should clean this up with `make clean`.

```bash
$ which circleci-cli
/Users/erichu/go/bin/circleci-cli
$ make clean
$ which circleci-cli
$
```

## Managing Dependencies

We use `dep` for vendoring our depencencies:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build/%/amd64/circleci: always

.PHONY: clean
clean:
go clean
go clean -i
rm -rf build

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ $ circleci help
You may first need to generate a CircleCI API Token from the [Personal API Token tab](https://circleci.com/account/api).

```
$ circleci configure
$ circleci configure
```

If you are using this tool on `.com`. accept the provided default `CircleCI API End Point`. If you are using it on Server, change the value to your Server address (i.e. `circleci.my-org.com`).


Expand Down

0 comments on commit e58a277

Please sign in to comment.