[X2Go-Commits] [x2goclient] 64/126: deduplicate.sh: fix parse_otool_output: we want to return failure only iff any of the strings are present in otool's output and actually handle the failure string *ARRAY* correctly as that.

git-admin at x2go.org git-admin at x2go.org
Wed Dec 2 23:19:29 CET 2015


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit d17e12a6f0896bdfbbad12b0ebf869c022351ada
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Thu Aug 27 04:53:44 2015 +0200

    deduplicate.sh: fix parse_otool_output: we want to return failure only iff any of the strings are present in otool's output and actually handle the failure string *ARRAY* correctly as that.
---
 debian/changelog |    3 +++
 deduplicate.sh   |    6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4cff10d..5870f71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -121,6 +121,9 @@ x2goclient (4.0.5.1-0x2go1) UNRELEASED; urgency=low
       "sparse" arrays correctly.
     - deduplicate.sh: quote "${arr[@]}" correctly to not suddenly force word
       splitting.
+    - deduplicate.sh: fix parse_otool_output: we want to return failure only
+      iff any of the strings are present in otool's output and actually handle
+      the failure string *ARRAY* correctly as that.
 
   [ Oleksandr Shneyder ]
   * New upstream release (4.0.5.1):
diff --git a/deduplicate.sh b/deduplicate.sh
index 33c4628..939eb55 100755
--- a/deduplicate.sh
+++ b/deduplicate.sh
@@ -15,9 +15,9 @@ parse_otool_output() {
 	typeset raw_output="${@}"
 
 	typeset fail_str=""
-	for fail_str in ${otool_fail_str}; do
-		if ! echo "${raw_output}" | grep -q "${fail_str}"; then
-			exit 1
+	for fail_str in "${otool_fail_str[@]}"; do
+		if echo "${raw_output}" | grep -q "${fail_str}"; then
+			return 1
 		fi
 	done
 

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list