Skip to content

Commit 9cbd618

Browse files
authored
fix: correct missing trailing slash in REGISTRY_URL for Databricks CLI download
- Fixed a typo by adding a missing trailing slash to the `REGISTRY_URL` in the `curl` command. - Ensures proper URL construction when downloading the Databricks CLI from custom registries.
1 parent dd35f9e commit 9cbd618

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ esac
4242
cd "$RUNNER_TEMP"
4343

4444
# Download release archive.
45-
curl -L -s -O "${REGISTRY_URL}databricks/cli/releases/download/v${VERSION}/${FILE}.zip"
45+
curl -L -s -O "${REGISTRY_URL}/databricks/cli/releases/download/v${VERSION}/${FILE}.zip"
4646

4747
# Unzip release archive.
4848
unzip -q "${FILE}.zip" -d .bin

0 commit comments

Comments
 (0)