Skip to content

Commit f1a8825

Browse files
gene-redpandaclaude
andcommitted
fix: add fail-fast flag to curl commands
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b433753 commit f1a8825

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.tasks/tools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ tasks:
1919
cmds:
2020
- |
2121
if [ "$(uname)" = "Darwin" ]; then
22-
curl -L {{.MAC_RPK}} -o {{.ARTIFACT_DIR}}/tmp/rpk.zip
22+
curl -fSL {{.MAC_RPK}} -o {{.ARTIFACT_DIR}}/tmp/rpk.zip
2323
else
24-
curl -L {{.LINUX_RPK}} -o {{.ARTIFACT_DIR}}/tmp/rpk.zip
24+
curl -fSL {{.LINUX_RPK}} -o {{.ARTIFACT_DIR}}/tmp/rpk.zip
2525
fi
2626
- unzip -o {{.ARTIFACT_DIR}}/tmp/rpk.zip -d {{.ARTIFACT_DIR}}/bin/
2727
- chmod 755 {{.ARTIFACT_DIR}}/bin/rpk

0 commit comments

Comments
 (0)