diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-06-19 08:17:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2020-06-19 08:17:02 +0000 |
commit | cb100a57fd5796d7ba6f2d0b0a7c7254fa0a3c35 (patch) | |
tree | 7a1348b7e0eeb186496cf53c10d9a4d3230d6f0c | |
parent | cb8ab026f808e47851d597308d628dff942050a5 (diff) | |
parent | cdc8d58992e88cc80090d5978dc823f08e7d6c1c (diff) |
Merge "Fix typo in auto.conf section"
-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 |