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

Harald Sitter apachelogger-guest at moszumanska.debian.org
Sat Jun 20 20:21:42 UTC 2015


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

The following commit has been merged in the master branch:
commit acfd2cd7eb35aceae36abaccd4439e08ded23e98
Author: Harald Sitter <sitter at kde.org>
Date:   Sat Jun 20 13:20:27 2015 -0700

    fix line splitting in dpkg
---
 lib/dpkg.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/dpkg.rb b/lib/dpkg.rb
index a3e6b24..d230207 100644
--- a/lib/dpkg.rb
+++ b/lib/dpkg.rb
@@ -6,7 +6,8 @@ module DPKG
     args = [*args]
     output = `#{cmd} #{args.join(' ')}`
     return [] if $? != 0
-    output.strip.split($RS).compact
+    # FIXME: write test
+    output.strip.split($/).compact
   end
 
   def self.dpkg(args)

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list