From a41c93d2e49a5a3c87d860342e832df25b4f771d Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Tue, 17 Sep 2019 20:00:54 +0200 Subject: SPEC-2703: fix a typo The existence test is inverted, fix it. Change-Id: Ida3104e34b3475c80b206091464b1e9a88d8be49 Bug-AGL: SPEC-2703 Signed-off-by: Corentin LABBE --- jjb/common/include-agl-lava-jobs-submit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index ec0cee69..9b788149 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -101,7 +101,7 @@ handle_skiplist() { fi done - if [ -e "$SKIPLIST" ];then + if [ ! -e "$SKIPLIST" ];then echo "DEBUG: $SKIPLIST does not exists" return 0 fi -- cgit 1.2.3-korg