[MERGED] libosmocore[master]: contrib/jenkins_arch.sh: Fix script comparison and arm support

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Mon Feb 19 08:34:39 UTC 2018


Harald Welte has submitted this change and it was merged.

Change subject: contrib/jenkins_arch.sh: Fix script comparison and arm support
......................................................................


contrib/jenkins_arch.sh: Fix script comparison and arm support

Change-Id: Ic53a675963cae328b296b4abaed9524451153271
---
M contrib/jenkins_arch.sh
1 file changed, 3 insertions(+), 3 deletions(-)

Approvals:
  Max: Looks good to me, but someone else must approve
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/contrib/jenkins_arch.sh b/contrib/jenkins_arch.sh
index bac9278..360fd1c 100755
--- a/contrib/jenkins_arch.sh
+++ b/contrib/jenkins_arch.sh
@@ -4,7 +4,7 @@
 
 arch="$1"
 
-if [ "x$arch" == "x" ]; then
+if [ "x$arch" = "x" ]; then
 	echo "Error: You have to specify the architecture as first argument, e.g. $0 amd64"
 	exit 2
 fi
@@ -22,8 +22,8 @@
     ./contrib/jenkins_amd64.sh
   ;;
 
-  arch)
-    ./contrib/jenkins_arch.sh
+  arm)
+    ./contrib/jenkins_arm.sh
   ;;
 
   *)

-- 
To view, visit https://gerrit.osmocom.org/6480
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic53a675963cae328b296b4abaed9524451153271
Gerrit-PatchSet: 2
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: daniel <dwillmann at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Max <msuraev at sysmocom.de>



More information about the gerrit-log mailing list