devops: fix webkit build on ubuntu (#3134)
Sometimes we actually pass one empty argument.
This commit is contained in:
parent
059004b179
commit
ae574b302f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue