Skip to content

Commit

Permalink
readme: fix quick start instructions
Browse files Browse the repository at this point in the history
the instructions for "go modules" vs "without go modules" where switched.
  • Loading branch information
fiws authored Apr 6, 2019
1 parent 1668a5d commit 746c1a5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@ For more, see [this blog post](https://medium.com/@jondot/a-story-of-a-fat-go-bi
### With Go Modules - Go 1.11 or higher

```
$ git clone https://github.com/jondot/goweight
$ cd goweight
$ go install
$ go get github.com/jondot/goweight
$ cd current-project
$ goweight
```

### Without Go Modules - Before Go 1.11

```
$ go get github.com/jondot/goweight
$ git clone https://github.com/jondot/goweight
$ cd goweight
$ go install
$ cd current-project
$ goweight
```


As an example, here's what `goweight` has to say about itself:

```
Expand Down

0 comments on commit 746c1a5

Please sign in to comment.