Skip to content

Commit

Permalink
fix: Remove legacy sqlsrv package install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Dec 18, 2023
1 parent a23b023 commit 4153539
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions rootfs/usr/bin/clevyr-build
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,6 @@ for extension in "${INSTALL[@]}"; do
touch "$BUILD_TMP/pgsql"
fi
;;
sqlsrv | pdo_sqlsrv)
if ! [ -d "$BUILD_TMP/sqlsrv" ]; then
mkdir -p "$BUILD_TMP/sqlsrv"

log 'Downloading sqlsrv dependencies: msodbc'
curl -sfo "$BUILD_TMP/sqlsrv/msodbc_amd64.apk" \
https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.6.1.1-1_amd64.apk
UNTRUSTED_DEPS+=( "$BUILD_TMP/sqlsrv/msodbc_amd64.apk" )

log 'Downloading sqlsrv dependencies: mssql-tools'
curl -sfo "$BUILD_TMP/sqlsrv/mssql-tools_amd64.apk" \
https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/mssql-tools_17.6.1.1-1_amd64.apk
UNTRUSTED_DEPS+=( "$BUILD_TMP/sqlsrv/mssql-tools_amd64.apk" )
fi
;;
esac
done

Expand Down

0 comments on commit 4153539

Please sign in to comment.