Skip to content

Commit 1af3513

Browse files
committed
Change go get to go install
1 parent 32a8147 commit 1af3513

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

cmd/wf/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Download the [64-bit](https://github.com/writeas/writeas-cli/releases/download/v
3333
**Linux (other)**<br />
3434
Download the [64-bit](https://github.com/writeas/writeas-cli/releases/download/v2.0.0/wf_1.0.0_linux_amd64.tar.gz) or [32-bit](https://github.com/writeas/writeas-cli/releases/download/v2.0.0/wf_1.0.0_linux_386.tar.gz) executable and put it somewhere in your `$PATH`, like `/usr/local/bin`.
3535

36-
### Go get it
36+
### Install with Go
3737
```bash
38-
go get github.com/writeas/writeas-cli/cmd/wf
38+
go install github.com/writeas/writeas-cli/cmd/wf
3939
```
4040

4141
Once this finishes, you'll see `wf` or `wf.exe` inside `$GOPATH/bin/`.
@@ -44,10 +44,10 @@ Once this finishes, you'll see `wf` or `wf.exe` inside `$GOPATH/bin/`.
4444

4545
To upgrade the CLI, download and replace the executable you downloaded before.
4646

47-
If you previously installed with `go get`, run it again with the `-u` option.
47+
If you previously installed with `go install`, simply run it again.
4848

4949
```bash
50-
go get -u github.com/writeas/writeas-cli/cmd/wf
50+
go install github.com/writeas/writeas-cli/cmd/wf
5151
```
5252

5353
## Usage

cmd/writeas/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ sudo apt-get update && sudo apt-get install writeas-cli
3939
**Linux (other)**<br />
4040
Download the [64-bit](https://github.com/writeas/writeas-cli/releases/download/v2.0.0/writeas_2.0.0_linux_amd64.tar.gz) or [32-bit](https://github.com/writeas/writeas-cli/releases/download/v2.0.0/writeas_2.0.0_linux_386.tar.gz) executable and put it somewhere in your `$PATH`, like `/usr/local/bin`.
4141

42-
### Go get it
42+
### Install with Go
4343
```bash
44-
go get github.com/writeas/writeas-cli/cmd/writeas
44+
go install github.com/writeas/writeas-cli/cmd/writeas
4545
```
4646

4747
Once this finishes, you'll see `writeas` or `writeas.exe` inside `$GOPATH/bin/`.
@@ -50,10 +50,10 @@ Once this finishes, you'll see `writeas` or `writeas.exe` inside `$GOPATH/bin/`.
5050

5151
To upgrade the CLI, download and replace the executable you downloaded before.
5252

53-
If you previously installed with `go get`, run it again with the `-u` option.
53+
If you previously installed with `go install`, simply run it again.
5454

5555
```bash
56-
go get -u github.com/writeas/writeas-cli/cmd/writeas
56+
go install github.com/writeas/writeas-cli/cmd/writeas
5757
```
5858

5959
## Usage

0 commit comments

Comments
 (0)