Skip to content

Commit

Permalink
BI-1776: Ensure BI Connector is not installed when testing on Windows…
Browse files Browse the repository at this point in the history
… before attempting to install it
  • Loading branch information
Jacob Evans committed Aug 16, 2018
1 parent 87ac4e6 commit aaf20b8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mongodb-odbc-driver/bin/start-sqlproxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@
echo 'downloaded sqlproxy'
echo

echo 'uninstalling sqlproxy...'
echo
msiexec /x sqlproxy /qn /log $ARTIFACTS_DIR/log/mongosql-uninstall.log || true
echo 'uninstalled sqlproxy'
echo

echo 'installing sqlproxy...'
echo
msiexec /i sqlproxy /qn /log mongosql-install.log
sleep 3
msiexec /i sqlproxy /qn /log $ARTIFACTS_DIR/log/mongosql-install.log
echo 'installed sqlproxy'
echo

Expand Down

0 comments on commit aaf20b8

Please sign in to comment.