Skip to content

Commit aaf4593

Browse files
committed
fix download urls
1 parent b06e646 commit aaf4593

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

install-unix.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ echo "Installing dbc CLI version: $VERSION"
99
# Note: Version flag (-v) support depends on the official install script
1010
# If not supported, the script will install the latest version
1111
if [ "$VERSION" = "latest" ]; then
12-
curl -fsSL https://dbc.how/install.sh | bash
12+
curl -fsSL https://dbc.columnar.tech/install.sh | bash
1313
else
14-
curl -fsSL https://dbc.how/install.sh | bash -s -- -v "$VERSION"
14+
export APP_VERSION="$VERSION"
15+
curl -fsSL https://dbc.columnar.tech/install.sh | bash -s
1516
fi
1617

1718
# Verify installation

install-windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Write-Host "Installing dbc CLI version: $Version"
88

99
try {
1010
# Download the official Windows install script
11-
$installScript = (Invoke-WebRequest -Uri "https://dbc.how/install.ps1" -UseBasicParsing).Content
11+
$installScript = (Invoke-WebRequest -Uri "https://dbc.columnar.tech/install.ps1" -UseBasicParsing).Content
1212

1313
# Save to temporary file to avoid Invoke-Expression security risks
1414
$tempScript = Join-Path $env:TEMP "dbc-install-$(Get-Random).ps1"

0 commit comments

Comments
 (0)