From f687b4543753d67dbf07ed311df1ec290dc2bade Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@biblibre.com>
Date: Wed, 1 Apr 2015 11:35:55 +0200
Subject: [PATCH] Bug 8050: Die if package building fails

The debian/build-git-snapshot script should not return success if an
error occurred.

Note that sys_command_output won't raise an error if something fails.

Signed-off-by: Robin Sheat <robin@catalyst.net.nz>

Made a minor change to print the command, add a newline.
---
 debian/build-git-snapshot | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/build-git-snapshot b/debian/build-git-snapshot
index a2a0e9f..2d13f77 100755
--- a/debian/build-git-snapshot
+++ b/debian/build-git-snapshot
@@ -62,7 +62,7 @@ sub sys_command_output_screen {
     my ($command) = @_;
 
     print "$command\n" if $debug;
-    system($command);
+    system($command) == 0 or die "Command '$command' returns an error ($?)\n";
 }
 
 sub everything_is_committed {
-- 
2.1.0