mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
10 lines
166 B
Bash
Executable file
10 lines
166 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
SCRIPT_DIR=$(dirname $(readlink -f "$0"))
|
|
WPT_ROOT=$(readlink -f $SCRIPT_DIR/../..)
|
|
cd $WPT_ROOT
|
|
|
|
if [[ $RUN_JOB -eq 1 ]]; then
|
|
. $SCRIPT
|
|
fi
|