[SCM] ci-tooling packaging branch, master, updated. 410dbdc487ae7901feaa92361210d32a74c714d6

Rohan Garg rohangarg-guest at moszumanska.debian.org
Mon Apr 13 11:37:46 UTC 2015


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

The following commit has been merged in the master branch:
commit 410dbdc487ae7901feaa92361210d32a74c714d6
Author: Rohan Garg <rohan at garg.io>
Date:   Mon Apr 13 13:37:29 2015 +0200

    Fix ternary operator call
---
 dci/mozilla.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dci/mozilla.rb b/dci/mozilla.rb
index 6b0d7ac..3d728f2 100644
--- a/dci/mozilla.rb
+++ b/dci/mozilla.rb
@@ -194,7 +194,7 @@ system("apt-get -y install #{packages.join(' ')}")
 UBUNTU_RELEASES = `ubuntu-distro-info -a`.split
 DEBIAN_RELEASES = `debian-distro-info -a`.split
 
-RELEASE = (DEBIAN_RELEASES.include? ARGV[2]) ? UBUNTU_RELEASES[-1] : ARGV[2]
+RELEASE = (DEBIAN_RELEASES.include? ARGV[2]) ? ARGV[2] : UBUNTU_RELEASES[-1]
 
 $logger.info("Building for #{RELEASE}")
 

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list