From 3bc13517b2d5de01bc14d8931147694edc688081 Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Wed, 4 Nov 2020 15:53:12 -0800 Subject: [PATCH] prepare-for-integration-tests.sh: add check for chromedriver Signed-off-by: Andrew Keesler --- hack/prepare-for-integration-tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/prepare-for-integration-tests.sh b/hack/prepare-for-integration-tests.sh index 8c8e777ff..e85128276 100755 --- a/hack/prepare-for-integration-tests.sh +++ b/hack/prepare-for-integration-tests.sh @@ -100,6 +100,7 @@ check_dependency ytt "Please install ytt. e.g. 'brew tap k14s/tap && brew instal check_dependency kapp "Please install kapp. e.g. 'brew tap k14s/tap && brew install kapp' for MacOS" check_dependency kubectl "Please install kubectl. e.g. 'brew install kubectl' for MacOS" check_dependency htpasswd "Please install htpasswd. Should be pre-installed on MacOS. Usually found in 'apache2-utils' package for linux." +check_dependency chromedriver "Please install chromedriver. e.g. 'brew install chromedriver' for MacOS" # Require kubectl >= 1.18.x if [ "$(kubectl version --client=true --short | cut -d '.' -f 2)" -lt 18 ]; then