From 7e6525a902a30847e87378683ae175b163f73f43 Mon Sep 17 00:00:00 2001 From: Bram Schuur Date: Fri, 27 Dec 2024 14:45:13 +0100 Subject: [PATCH] STAC-0: Drop incompatble -q flag --- scripts/publish/installers/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish/installers/install.sh b/scripts/publish/installers/install.sh index 3a4c900e..ff87cd12 100755 --- a/scripts/publish/installers/install.sh +++ b/scripts/publish/installers/install.sh @@ -80,7 +80,7 @@ if [[ -n "${STS_URL}" && -n "${STS_API_TOKEN}" ]]; then ${TARGET_CLI_PATH}/sts context save --url ${STS_URL} --api-token ${STS_API_TOKEN} fi -if [ "$(whereis -q sts)" == "" ]; then +if [ "$(whereis sts)" == "" ]; then printf "${RED}[WARNING]${NO_COLOR} Can not find 'sts' on the PATH or execute it. Consider adding the directory to your PATH: PATH=\"\$PATH:${TARGET_CLI_PATH}\"\n" printf "Type ${GREEN}${TARGET_CLI_PATH}/sts${NO_COLOR} to get started!\n" else