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

Rohan Garg rohangarg-guest at moszumanska.debian.org
Tue Jan 12 19:27:13 UTC 2016


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

The following commit has been merged in the master branch:
commit e00e70468ca2e996b59a08e7b439c129c19f3bfa
Author: Rohan Garg <rohan at garg.io>
Date:   Tue Jan 12 20:27:08 2016 +0100

    Use /etc/os-release to figure out version
    
    Debian does not have a lsb-release file anymore, switch to using
    os-release instead
---
 lib/ci/build_binary.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/ci/build_binary.rb b/lib/ci/build_binary.rb
index 032a7f4..c173d8a 100644
--- a/lib/ci/build_binary.rb
+++ b/lib/ci/build_binary.rb
@@ -2,7 +2,7 @@ require 'fileutils'
 
 require_relative 'source'
 require_relative '../dpkg'
-require_relative '../lsb'
+require_relative '../os'
 require_relative '../retry'
 
 module CI
@@ -95,7 +95,7 @@ module CI
     private
 
     def pretty_old_system?
-      LSB::DISTRIB_CODENAME == 'trusty'
+      OS::VERSION_ID == '14.04'
     rescue
       false
     end

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list