[SCM] ci-tooling packaging branch, master, updated. e551b173668eaae7a56f80056f7c4196b8b17b9c
    Rohan Garg 
    rohangarg-guest at moszumanska.debian.org
       
    Tue May 19 22:01:14 UTC 2015
    
    
  
Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=e551b17
The following commit has been merged in the master branch:
commit e551b173668eaae7a56f80056f7c4196b8b17b9c
Author: Rohan Garg <rohan at garg.io>
Date:   Wed May 20 00:00:56 2015 +0200
    Fix issue where native and quilt build versions are switched around
---
 lib/ci/build_source.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/ci/build_source.rb b/lib/ci/build_source.rb
index 723ed7f..d931cf0 100644
--- a/lib/ci/build_source.rb
+++ b/lib/ci/build_source.rb
@@ -110,8 +110,8 @@ class VcsSource < AbstractSource
 
     @package_name = changelog.name
     build_version = CI::BuildVersion.new(changelog)
-    @package_version = build_version.full if @source.format.type == :native
-    @package_version = build_version.base if @source.format.type == :quilt
+    @package_version = build_version.base if @source.format.type == :native
+    @package_version = build_version.full if @source.format.type == :quilt
     @tar_version = build_version.tar
 
     copy_source
-- 
ci-tooling packaging
    
    
More information about the pkg-kde-commits
mailing list