summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-05-13 15:00:28 +0200
committerHolger Levsen <holger@layer-acht.org>2016-05-13 15:27:56 +0200
commitf2ce1e9aca66cd22129d4da467bc0f8526232af4 (patch)
treec5ae4122379a6d129edeec7e57078b5438d2dd84 /bin
parentde62099aa502c0615b915bf3f65770697aa2c93a (diff)
downloadjenkins.debian.net-f2ce1e9aca66cd22129d4da467bc0f8526232af4.tar.xz
lvc: don't fail on missing screenshot
Diffstat (limited to 'bin')
-rwxr-xr-xbin/lvc.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/lvc.sh b/bin/lvc.sh
index f0caec1a..5b1e5b31 100755
--- a/bin/lvc.sh
+++ b/bin/lvc.sh
@@ -94,7 +94,10 @@ fi
/srv/jenkins/cucumber/bin/run_test_suite --vnc-server-only --capture-all --keep-snapshots --iso $IMAGE --tmpdir $PWD --old-iso $IMAGE -- --format pretty --format pretty_debug --out $PWD/results/debug.log /srv/jenkins/cucumber/features/step_definitions /srv/jenkins/cucumber/features/support "${@}"
-cp $(ls -t1 results/*.png | head -1) $WORKSPACE/screenshot.png
+LAST_SCREENSHOT=$(ls -t1 results/*.png | head -1)
+if [ -e "$LAST_SCREENSHOT" ] ; then
+ cp $LAST_SCREENSHOT $WORKSPACE/screenshot.png
+fi
cleanup_all