[SCM] ci-tooling packaging branch, master, updated. 67d337dbeab1bc1db41e255be3fe8c094ee5753e

Rohan Garg rohangarg-guest at moszumanska.debian.org
Mon Dec 15 21:54:36 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=67d337d

The following commit has been merged in the master branch:
commit 67d337dbeab1bc1db41e255be3fe8c094ee5753e
Author: Rohan Garg <rohan at kde.org>
Date:   Mon Dec 15 22:53:52 2014 +0100

    Make sure we fail if we can't install the build deps
---
 dci/source.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dci/source.rb b/dci/source.rb
index d7d9e41..bed61f0 100644
--- a/dci/source.rb
+++ b/dci/source.rb
@@ -42,6 +42,8 @@ Dir.chdir(ARGV[1]) do
             build_depends << dep.name
         end
         system("apt-get -y install #{build_depends.join(' ')}")
+        $logger.fatal("Failed to install build deps!") unless $?.success?
+        exit 1 unless $?.success?
     end
 
     source_name = $changelog.name

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list