diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-04-30 13:22:10 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-04-30 11:28:36 +0000 |
commit | e1cd8ac11067e4f6089eb91037aa22c80da0a338 (patch) | |
tree | 7a1186a9f54f1f42a05e2e423e049fd770de371e /jjb/common | |
parent | f2e30b0b93428ffe9b5ad151204421f873489ac1 (diff) |
jjb/common/include-agl-lava-jobs-submit.sh: add a missing then
this patch adds a missing "then"
Change-Id: Iaddfc12597864e3ba35a12baa6b0716660d969b3
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'jjb/common')
-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 30f11ee3..7b28ed42 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -38,7 +38,7 @@ echo "Submitted as job: $JOB_URL" # If the job didn't finish after JOB_TIMEOUT, will exit and display # an error message # example: lava-slave crash -if [ -z $JOB_TIMEOUT ] +if [ -z $JOB_TIMEOUT ]; then # if the JOB_TIMEOUT is not set, it's 1 hour by default JOB_TIMEOUT=360 fi |