File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
# Set the release version variable
9
9
RELEASE_VERSION=v0.7.0
10
10
# 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
12
12
# 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
14
14
```
15
15
16
16
#### Verify the downloaded release binary
17
17
18
18
``` sh
19
19
# 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
21
21
# 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
23
23
```
24
24
25
25
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:
You can’t perform that action at this time.
0 commit comments