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

Rohan Garg rohangarg-guest at moszumanska.debian.org
Wed Dec 17 18:49:54 UTC 2014


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

The following commit has been merged in the master branch:
commit 545f2ae70de7c58726eec5c9a9ada9ca9bcd0572
Author: Rohan Garg <rohan at kde.org>
Date:   Wed Dec 17 19:49:39 2014 +0100

    Fix variable assignment
---
 dci/source.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dci/source.rb b/dci/source.rb
index 559d6ff..9cb1d7e 100644
--- a/dci/source.rb
+++ b/dci/source.rb
@@ -14,11 +14,11 @@ options = {}
 OptionParser.new do | opts |
     opts.banner = "Usage: dci.rb build -c repo1,repo2 file.changes"
     opts.on('-r r1,r2,r3', '--repos REPOS', Array, 'Comma separated repositories to add to the schroot before build') do |repos|
-      options[:repos] ||= repos
+      options[:repos] = repos
     end
 
     opts.on('-w dir', '--workspace dir', 'Workspace dir to find repository mappings') do |dir|
-        options[:workspace] ||= dir
+        options[:workspace] = dir
     end
 end.parse!
 

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list