Fix manual install directions

`go get -u …` → `go install …`
This commit is contained in:
bri 2024-02-01 22:38:02 -05:00 committed by GitHub
parent f9c8f60365
commit 2a4917eb2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -239,7 +239,7 @@ docker logs -f sshportal
Get the latest version using GO.
```sh
GO111MODULE=on go get -u moul.io/sshportal
go install moul.io/sshportal@latest
```
---