diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-09-17 20:00:54 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2019-09-17 20:00:54 +0200 |
commit | a41c93d2e49a5a3c87d860342e832df25b4f771d (patch) | |
tree | 441cb6bb0f345759b475adf68d2ddb6f53cfec6d /jjb | |
parent | f77e9acc762ab9553bc9bc09abc08031a596980f (diff) |
SPEC-2703: fix a typo
The existence test is inverted, fix it.
Change-Id: Ida3104e34b3475c80b206091464b1e9a88d8be49
Bug-AGL: SPEC-2703
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-lava-jobs-submit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |