[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, experimental, updated. debian/2.6.8-1-844-g7ec39d5

Matt Robinson matt at puppetlabs.com
Tue May 10 08:06:47 UTC 2011


The following commit has been merged in the experimental branch:
commit d448763f6e94709b688e12f2a0edc589cf38e6fa
Author: Matt Robinson <matt at puppetlabs.com>
Date:   Tue Mar 22 00:54:09 2011 -0700

    (#6566) Fix ruby 1.9 incompatible case statement
    
    Once the futils area of the Rakefile was fixed, running `rake spec`
    turned up this problem.

diff --git a/tasks/rake/git_workflow.rake b/tasks/rake/git_workflow.rake
index 1ba57c1..68a4d4a 100644
--- a/tasks/rake/git_workflow.rake
+++ b/tasks/rake/git_workflow.rake
@@ -6,8 +6,8 @@ def find_start(start)
 # This is a case statement, as we might want to map certain
 # git tags to starting points that are not currently in git.
 	case start
-		when nil?:
-		when @next_release: return "master"
+		when nil?;
+		when @next_release; return "master"
 		else return start
 	end
 end

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list