summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-25 23:30:48 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-25 23:30:48 +0000
commitc7f9942a0305c8a583e222a004f18d4a8ed41837 (patch)
treeddd0b4815fd5a70657e2a4e92712c42910a1f1c5
parentcf82cfa2e36dda9bf1c87a583da6632872325ede (diff)
downloadpuppet-c7f9942a0305c8a583e222a004f18d4a8ed41837.tar.gz
puppet-c7f9942a0305c8a583e222a004f18d4a8ed41837.tar.xz
puppet-c7f9942a0305c8a583e222a004f18d4a8ed41837.zip
Adding release tag REL_0_12_0
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@854 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 221a52f4a..64bb4c70e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -329,8 +329,8 @@ task :update_version => [:prerelease] do
open("conf/redhat/puppet.spec") do |rakein|
open("conf/redhat/puppet.spec.new", "w") do |rakeout|
rakein.each do |line|
- if line =~ /^Version:=\s*/
- rakeout.puts "Version: '#{PKG_VERSION}'"
+ if line =~ /^Version:\s*/
+ rakeout.puts "Version: #{PKG_VERSION}"
else
rakeout.puts line
end
@@ -342,7 +342,7 @@ task :update_version => [:prerelease] do
if ENV['RELTEST']
announce "Release Task Testing, skipping commiting of new version"
else
- sh %{svn commit -m "Updated to version #{PKG_VERSION}" lib/puppet.rb}
+ sh %{svn commit -m "Updated to version #{PKG_VERSION}" lib/puppet.rb conf/redhat/puppet.spec}
end
end
end