diff options
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-run-test-short.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jjb/common/include-agl-run-test-short.sh b/jjb/common/include-agl-run-test-short.sh index c397f126..6fb72ac8 100644 --- a/jjb/common/include-agl-run-test-short.sh +++ b/jjb/common/include-agl-run-test-short.sh @@ -9,8 +9,10 @@ set -x cd $REPODIR #cat build-info -cat tmp/deploy/images/${TARGETMACHINE}/build-info -source tmp/deploy/images/${TARGETMACHINE}/build-info +if [ -e tmp/deploy/images/${TARGETMACHINE}/build-info ]; then + cat tmp/deploy/images/${TARGETMACHINE}/build-info + source tmp/deploy/images/${TARGETMACHINE}/build-info +fi echo "# LAVA lab target: ${LAVA_LAB} #" # releng-scripts depends on jinja2 >= 2.9 |