Skip to content

Commit 6fc1816

Browse files
committed
crazy-pills
1 parent 8ef553c commit 6fc1816

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

grai-integrations/source-mssql/data/init-db.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ SQL_CMD_DIR=${SQL_CMD_DIR-"/opt/mssql-tools18/bin"}
1010
export PATH=$PATH:$SQL_CMD_DIR
1111
AUTH_ARG=${AUTH_ARG:-"-No"}
1212
SQL_CMD="sqlcmd -S $SERVER -U sa -P $MSSQL_SA_PASSWORD $AUTH_ARG"
13-
13+
echo $SQL_CMD
14+
SQL_CMD="sqlcmd -S $SERVER -U sa -P $MSSQL_SA_PASSWORD"
1415
$SQL_CMD -Q 'SELECT 1' -b -o /dev/null
1516
DBSTATUS=$?
1617
if [[ $DBSTATUS -ne 0 ]]; then

0 commit comments

Comments
 (0)