Skip to content

Commit

Permalink
fix curl args
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiitk committed Apr 27, 2024
1 parent 96c1443 commit c6391f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grpc-js-xds/scripts/psm-interop-test-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ psm::lang::source_install_lib() {
local install_lib
# Download to a tmp file.
install_lib="$(mktemp -d)/psm_interop_kokoro_lib.sh"
curl -s --retry=5 --retry-connrefused -o "${install_lib}" "${TEST_DRIVER_INSTALL_SCRIPT_URL}"
curl -s --retry-connrefused --retry 5 -o "${install_lib}" "${TEST_DRIVER_INSTALL_SCRIPT_URL}"
# Checksum.
if command -v sha256sum &> /dev/null; then
echo "Install script checksum:"
Expand Down

0 comments on commit c6391f3

Please sign in to comment.