From: Jan-Simon Möller Date: Fri, 19 Jun 2020 08:05:42 +0000 (+0200) Subject: Fix typo in auto.conf section X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=cdc8d58992e88cc80090d5978dc823f08e7d6c1c;p=ci-management.git 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 --- 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