From 2a18fad185a748cb9ac82198653d97b7f3a5b597 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 23 Oct 2023 11:39:53 -0700 Subject: [PATCH] fix curl call --- .github/workflows/integration.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f8fa81ceb..be6443a13 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -226,6 +226,7 @@ jobs: - name: Configure ODBC if: ${{ matrix.test != 'spark-databricks-http' }} + shell: bash run: | apt-get update && apt-get install -y --no-install-recommends \ g++ \ @@ -235,7 +236,7 @@ jobs: apt-get install -y curl curl --create-dirs -OL \ - --output-dir "/tmp/simba_odbc.zip" \ + --output "/tmp/simba_odbc.zip" \ "https://databricks.com/wp-content/uploads/drivers-2020/SimbaSparkODBC-2.6.16.1019-Debian-64bit.zip" unzip /tmp/simba_odbc.zip -d /tmp/ \