diff --git a/install.sh b/install.sh index 38dc573f..f5e8db76 100755 --- a/install.sh +++ b/install.sh @@ -80,7 +80,7 @@ tmpdir="$(mktemp -d)" cd "$tmpdir" # Download release archive. -curl -L -s -O "https://github.com/databricks/cli/releases/download/v${VERSION}/${FILE}.zip" +curl -fsSL -O "https://github.com/databricks/cli/releases/download/v${VERSION}/${FILE}.zip" # Unzip release archive. unzip -q "${FILE}.zip" diff --git a/setup_release.sh b/setup_release.sh index 2feab34c..4f2303ff 100644 --- a/setup_release.sh +++ b/setup_release.sh @@ -42,7 +42,7 @@ esac cd "$RUNNER_TEMP" # Download release archive. -curl -L -s -O "https://github.com/databricks/cli/releases/download/v${VERSION}/${FILE}.zip" +curl -fsSL -O "https://github.com/databricks/cli/releases/download/v${VERSION}/${FILE}.zip" # Unzip release archive. unzip -q "${FILE}.zip" -d .bin