Skip to content

Commit 1ac84ab

Browse files
DavidsoffEric Stroczynski
authored andcommitted
docs: update curl to follow redirects (#1439)
1 parent 2bfe453 commit 1ac84ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/user/install-operator-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
# Set the release version variable
99
RELEASE_VERSION=v0.7.0
1010
# Linux
11-
$ curl -OJ https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
11+
$ curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
1212
# macOS
13-
$ curl -OJ https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin
13+
$ curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin
1414
```
1515

1616
#### Verify the downloaded release binary
1717

1818
```sh
1919
# Linux
20-
curl -OJ https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu.asc
20+
curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu.asc
2121
# macOS
22-
curl -OJ https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin.asc
22+
curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin.asc
2323
```
2424

2525
To verify a release binary using the provided asc files, place the binary and corresponding asc file into the same directory and use the corresponding command:

0 commit comments

Comments
 (0)