From 433c3b5a8cbfcc4a9198ded2177e7ff2304f6a76 Mon Sep 17 00:00:00 2001 From: Travis Wright Date: Tue, 6 Nov 2018 11:05:47 -0800 Subject: [PATCH] updating shell script to not look for .exe files on Linux :) --- samples/features/sql-big-data-cluster/bootstrap-sample-db.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sh b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sh index 33cf879c..29238110 100644 --- a/samples/features/sql-big-data-cluster/bootstrap-sample-db.sh +++ b/samples/features/sql-big-data-cluster/bootstrap-sample-db.sh @@ -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