Skip to content

Commit 1cff733

Browse files
authored
Remove go get update from README instructions (#242)
Removes the `go get` instructions in the SDK's README to not suggest the `-u` update flag. This improves the SDK's compatibility with Go modules.
1 parent 99a604c commit 1cff733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ We'll be expanding out the [Issues] and [Projects] sections with additional chan
1010

1111
## Getting started
1212

13-
The best way to get started working with the SDK is to use `go get` to add the SDK to your Go Workspace manually.
13+
The best way to get started working with the SDK is to use `go get` to add the SDK to your Go Workspace or application using Go modules.
1414

1515
```sh
16-
go get -u github.com/aws/aws-sdk-go-v2
16+
go get github.com/aws/aws-sdk-go-v2
1717
```
1818

1919
You could also use [Dep] to add the SDK to your application's dependencies. Using [Dep] will simplify your update story and help your application keep pinned to specific version of the SDK

0 commit comments

Comments
 (0)