updating shell script to not look for .exe files on Linux :)

This commit is contained in:
Travis Wright
2018-11-06 11:05:47 -08:00
parent 8b7658d7e4
commit 433c3b5a8c
@@ -23,8 +23,7 @@ KNOX_PASSWORD=${KNOX_PASSWORD:=$SQL_MASTER_SA_PASSWORD}
SQL_MASTER_INSTANCE=$SQL_MASTER_IP,31433
KNOX_ENDPOINT=$KNOX_IP:30443
for util in sqlcmd.exe bcp.exe kubectl.exe curl.exe
for util in sqlcmd bcp kubectl curl
do
echo Verifying $util is in path & which $util 1>NUL 2>NUL || (echo Unable to locate $util && exit 1)
done