Skip to content

Commit

Permalink
Fix readme install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ctberthiaume committed Nov 21, 2019
1 parent d181b51 commit e1b7edb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,16 @@ Any tool reading this SFL file should be prepared to handle a malformed final li

Either download a binary from the releases section of this github repo, or run

`go get https://github.com/armbrustlab/seaflow-transfer/cmd/seaflow-transfer`
```sh
env GO111MODULE=on go get github.com/armbrustlab/seaflow-transfer/cmd/seaflow-transfer
```

As of Go version 1.13 the default value for `GO111MODULE` is `auto`,
which may cause dependency compatiblity problems.
Prepending with `env GO111MODULE=on` ensures the tool builds with the correct dependency versions.
This may be unnecessary in future versions of Go.
See [https://golang.org/cmd/go/#hdr-Module_support](https://golang.org/cmd/go/#hdr-Module_support).

## Usage

Run `seaflow-transfer -help` for CLI usage.
Run `seaflow-transfer -help` for CLI usage.

0 comments on commit e1b7edb

Please sign in to comment.