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

Harald Sitter apachelogger-guest at moszumanska.debian.org
Thu Feb 26 14:05:24 UTC 2015


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

The following commit has been merged in the master branch:
commit 416d393727f05205761d54b174ac6153107d30d5
Author: Harald Sitter <sitter at kde.org>
Date:   Thu Feb 26 15:05:22 2015 +0100

    drop version single quotes, they shouldn't be needed
    
    we pass an argument array to system() which should call apt-get with
    a suitable argv such that the version don't need quoting and in fact
    quoting would get in the way
---
 kci/install_check.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kci/install_check.rb b/kci/install_check.rb
index e22c4e0..9fbfdb5 100755
--- a/kci/install_check.rb
+++ b/kci/install_check.rb
@@ -102,7 +102,7 @@ class CiPPA
     pin!
     args = []
     args << 'ubuntu-minimal' << 'upstart'
-    args += packages.map { |k, v| "#{k}='#{v}'" }
+    args += packages.map { |k, v| "#{k}=#{v}" }
     apt(:install, args)
   end
 

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list