From b77d4ac20dc02b36cc93fb67912cf410195593f0 Mon Sep 17 00:00:00 2001
From: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Date: Fri, 4 Jul 2014 16:51:49 +0200
Subject: [PATCH] fix system() return value handling

Change-Id: I3f12d4ce0653b31ca397167a40303b764bdf7472
Reviewed-by: Sergio Ahumada <sahumada@blackberry.com>
---
 bin/git-gpush | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bin/git-gpush b/bin/git-gpush
index 25849ec..1f111fc 100755
--- a/bin/git-gpush
+++ b/bin/git-gpush
@@ -288,7 +288,9 @@ sub push_patches()
     push @gitcmd, $remote, "$ref_from:refs/".($draft > 0 ? 'drafts' : 'for')."/$ref_to";
 
     print '+ '.format_cmd(@gitcmd)."\n" if ($verbose);
-    exit system(@gitcmd);
+    my $ex = system(@gitcmd);
+    die("Failed to run ".format_cmd(@gitcmd).": $!\n") if ($ex < 0);
+    exit($ex >> 8) if ($ex);
 }
 
 load_aliases();
-- 
GitLab