@@ -, +, @@ --- debian/build-git-snapshot | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/debian/build-git-snapshot +++ a/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 { --