Fix unbound variable when number of JOBS is omitted
This commit is contained in:
parent
3536ad0902
commit
00e5d00530
1 changed files with 1 additions and 1 deletions
2
test/run
2
test/run
|
@ -42,7 +42,7 @@ if [ -d "test/data" ]; then
|
|||
|
||||
if [ -d "test/data-visual/styles" ]; then
|
||||
run_substep "Running visual tests..."
|
||||
if [ -z "$JOBS" ]; then
|
||||
if [ -z "${JOBS:-}" ]; then
|
||||
JOBS=1
|
||||
fi
|
||||
if [[ -f ./test/visual/run ]]; then
|
||||
|
|
Loading…
Reference in a new issue