Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for installing the CLI on DBR #85

Merged
merged 11 commits into from
Feb 22, 2024
5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ MINGW64_NT)
;;
esac

# Set target to ~/bin if DATABRICKS_RUNTIME_VERSION environment variable is set.
if [ -n "$DATABRICKS_RUNTIME_VERSION" ]; then
TARGET="$HOME/bin"
shreyas-goenka marked this conversation as resolved.
Show resolved Hide resolved
fi

# Include architecture in file name.
ARCH="$(uname -m)"
case "$ARCH" in
Expand Down
Loading