Skip to content

Commit

Permalink
'go get' is no longer supported outside a module (#15)
Browse files Browse the repository at this point in the history
❯ CGO_ENABLED=1 go get github.com/dkorunic/iSMC
go: go.mod file not found in current directory or any parent directory.
	'go get' is no longer supported outside a module.
	To build and install a command, use 'go install' with a version,
	like 'go install example.com/cmd@latest'
	For more information, see https://golang.org/doc/go-get-install-deprecation
	or run 'go help get' or 'go help install'.
  • Loading branch information
arvenil authored Jul 31, 2022
1 parent 8588275 commit da1f154
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ There are two ways of installing `iSMC` (tool works only on macOS computers):

Download your preferred flavor from [the releases](https://github.com/dkorunic/iSMC/releases/latest) page and install manually.

### Using go get
### Using go install

```shell
CGO_ENABLED=1 go get github.com/dkorunic/iSMC
CGO_ENABLED=1 go install github.com/dkorunic/iSMC@latest
```

## Usage
Expand Down

0 comments on commit da1f154

Please sign in to comment.