devops: fix webkit build on POSIX
This commit is contained in:
parent
2a4519ffd9
commit
8c8287b276
|
|
@ -18,7 +18,8 @@ fi
|
||||||
if [[ "$(uname)" == "Darwin" ]]; then
|
if [[ "$(uname)" == "Darwin" ]]; then
|
||||||
./Tools/Scripts/build-webkit --release
|
./Tools/Scripts/build-webkit --release
|
||||||
elif [[ "$(uname)" == "Linux" ]]; then
|
elif [[ "$(uname)" == "Linux" ]]; then
|
||||||
if ! [[ -d ./WebKitBuild ]]; then
|
# Check that WebKitBuild exists and is not empty.
|
||||||
|
if ! [[ (-d ./WebKitBuild) && (-n $(ls -1 ./WebKitBuild/)) ]]; then
|
||||||
yes | DEBIAN_FRONTEND=noninteractive ./Tools/Scripts/update-webkitgtk-libs
|
yes | DEBIAN_FRONTEND=noninteractive ./Tools/Scripts/update-webkitgtk-libs
|
||||||
fi
|
fi
|
||||||
./Tools/Scripts/build-webkit --gtk --release MiniBrowser
|
./Tools/Scripts/build-webkit --gtk --release MiniBrowser
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue