diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2020-06-19 10:05:42 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2020-06-19 10:05:42 +0200 |
commit | cdc8d58992e88cc80090d5978dc823f08e7d6c1c (patch) | |
tree | 55b45b5149c709f224439cdb73fe08770ad0c86b /jjb | |
parent | 689c05855b7c61b9694d6158a686de1035831d33 (diff) |
Fix typo in auto.conf section
There was a typo in the if statement. Fix it.
Change-Id: I8b1014f7e5c35b14f0d7639aa38b10907fcac901
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-auto-conf.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/common/include-agl-auto-conf.sh b/jjb/common/include-agl-auto-conf.sh index 2d3e96bf..20f5d9fb 100644 --- a/jjb/common/include-agl-auto-conf.sh +++ b/jjb/common/include-agl-auto-conf.sh @@ -42,7 +42,7 @@ fi # PRSERV and HASHSERV for CI # but only starting with dunfell / master -> soon jellyfish -if test x"master" = x"${DISTROBRANCH}" -o test -x"jellyfish" = x"${DISTROBRANCH}" ; then +if test x"master" = x"${DISTROBRANCH}" -o x"jellyfish" = x"${DISTROBRANCH}" ; then export PRHASHSERV="10.30.72.18" cat << EOF >> conf/auto.conf @@ -53,4 +53,4 @@ BB_SIGNATURE_HANDLER = "OEEquivHash" PRSERV_HOST = "${PRHASHSERV}:8585" EOF -fi
\ No newline at end of file +fi |