summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-04 02:09:00 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-04 02:09:00 +0000
commit2994cbc3bc06f89ca1b066f2789dd00973b26169 (patch)
tree2ab9bd14434bfe0af324048dd970c1716d3e46f6 /Rakefile
parent3b9c9be6c6d10a002831364f5bf0b9d6669ca65b (diff)
downloadpuppet-2994cbc3bc06f89ca1b066f2789dd00973b26169.tar.gz
puppet-2994cbc3bc06f89ca1b066f2789dd00973b26169.tar.xz
puppet-2994cbc3bc06f89ca1b066f2789dd00973b26169.zip
fixing rakefile
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@772 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index f780bf44b..f35f451de 100644
--- a/Rakefile
+++ b/Rakefile
@@ -292,7 +292,7 @@ task :update_version => [:prerelease] do
open("lib/puppet.rb") do |rakein|
open("lib/puppet.rb.new", "w") do |rakeout|
rakein.each do |line|
- if line =~ /^\s+PUPPETVERSION\s*=\s*/
+ if line =~ /^\s*PUPPETVERSION\s*=\s*/
rakeout.puts "PUPPETVERSION = '#{PKG_VERSION}'"
else
rakeout.puts line
@@ -328,7 +328,7 @@ task :tag => [:prerelease] do
announce "Release Task Testing, skipping SVN tagging"
else
sh %{svn copy ../trunk/ ../tags/#{reltag}}
- sh %{cd ../tags; svn ci -m "Adding release tag #{reltag}}
+ sh %{cd ../tags; svn ci -m "Adding release tag #{reltag}"}
end
end