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

Rohan Garg rohangarg-guest at moszumanska.debian.org
Wed Dec 17 19:03:52 UTC 2014


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

The following commit has been merged in the master branch:
commit 3ca70ba9e2a5c6d3838f99347cd46b2f0d690ec4
Author: Rohan Garg <rohan at kde.org>
Date:   Wed Dec 17 20:03:43 2014 +0100

    Fix var name
---
 dci/build.rb  | 4 ++--
 dci/source.rb | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dci/build.rb b/dci/build.rb
index 987a9b0..2090764 100644
--- a/dci/build.rb
+++ b/dci/build.rb
@@ -44,8 +44,8 @@ else
             if File.exists? EXTRA_REPOS
                 extra_repos = JSON::parse(File.read(EXTRA_REPOS))
                 options[:repos].each do |repo|
-                    system("echo '#{repo[repo]['url']} #{package_release} main' >> /etc/apt/sources.list.d/extra_repos.list")
-                    system("echo '#{repo[repo]['key']}' | apt-key add -")
+                    system("echo '#{extra_repos[repo]['url']} #{package_release} main' >> /etc/apt/sources.list.d/extra_repos.list")
+                    system("echo '#{extra_repos[repo]['key']}' | apt-key add -")
                 end
             end
         end
diff --git a/dci/source.rb b/dci/source.rb
index f7586d5..fe8c1a0 100644
--- a/dci/source.rb
+++ b/dci/source.rb
@@ -51,8 +51,8 @@ if !options[:repos].nil?
         if File.exists? EXTRA_REPOS
             extra_repos = JSON::parse(File.read(EXTRA_REPOS))
             options[:repos].each do |repo|
-                system("echo '#{repo[repo]['url']} #{release} main' >> /etc/apt/sources.list.d/extra_repos.list")
-                system("echo '#{repo[repo]['key']}' | apt-key add -")
+                system("echo '#{extra_repos[repo]['url']} #{release} main' >> /etc/apt/sources.list.d/extra_repos.list")
+                system("echo '#{extra_repos[repo]['key']}' | apt-key add -")
             end
         end
     end

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list