-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove prompts from bash scripts in README
- Loading branch information
1 parent
6ca717f
commit be6f828
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,14 @@ The latest build of the `hammer` cli is available from the releases page. | |
Download the tar for your platform, untar it, and move it to your $PATH. | ||
|
||
Or using `brew` on macOS or Linux: | ||
``` | ||
```bash | ||
brew tap pivotal/hammer https://github.com/pivotal/hammer | ||
brew install hammer | ||
``` | ||
|
||
Alternatively you can build `hammer` from source if you have Go installed: | ||
```bash | ||
$ git clone [email protected]:pivotal/hammer.git && cd hammer && go install | ||
git clone [email protected]:pivotal/hammer.git && cd hammer && go install | ||
``` | ||
|
||
## Config | ||
|
@@ -44,12 +44,12 @@ NB: `sys_domain` and `pks_api.url` are only needed for using `hammer cf-login` a | |
|
||
Unit and integration tests can be run if you have [Ginkgo](https://github.com/onsi/ginkgo) installed: | ||
```bash | ||
$ ginkgo -r . | ||
ginkgo -r . | ||
``` | ||
|
||
Linters can also be run using [golangci-lint](https://github.com/golangci/golangci-lint): | ||
```bash | ||
$ golangci-lint run | ||
golangci-lint run | ||
``` | ||
|
||
--- | ||
|