From 8f6acc72bebae07e38d173bf97213f299b65bdd2 Mon Sep 17 00:00:00 2001 From: Topher Lubaway Date: Fri, 15 Apr 2022 14:02:16 -0500 Subject: [PATCH] Cloud's version of which doesn't support -s (#12080) so we removed -s and sent the output to the dark place --- tools/bin/deploy_docusaurus | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/deploy_docusaurus b/tools/bin/deploy_docusaurus index 320d21d6a9e8..3422b19b8932 100755 --- a/tools/bin/deploy_docusaurus +++ b/tools/bin/deploy_docusaurus @@ -31,7 +31,7 @@ pwd # Yarn check (which is commonly used to check for program existance) -if ! which -s yarn; then +if ! which yarn > /dev/null; then echo -e "$red_text""yarn not found HALP!!\n\n""$default_text" exit 1 fi