From ae574b302f418190ad661a773ef1e0938903e9f4 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 23 Jul 2020 16:59:45 -0700 Subject: [PATCH] devops: fix webkit build on ubuntu (#3134) Sometimes we actually pass one empty argument. --- browser_patches/webkit/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_patches/webkit/build.sh b/browser_patches/webkit/build.sh index da99d239ff..505f551d24 100755 --- a/browser_patches/webkit/build.sh +++ b/browser_patches/webkit/build.sh @@ -24,7 +24,7 @@ if [[ "$(uname)" == "Darwin" ]]; then ./Tools/Scripts/build-webkit --release --touch-events --orientation-events elif [[ "$(uname)" == "Linux" ]]; then cd "checkout" - if [[ $# == 0 ]]; then + if [[ $# == 0 || (-z "$1") ]]; then echo echo BUILDING: GTK and WPE echo