aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-08-23 16:06:11 -0700
committerCarl Lerche <carllerche@mac.com>2010-08-23 17:06:13 -0700
commit8f4f10b9e2abd3a9015079da7226c8bd9127e247 (patch)
treec62f6c6733660c4825e55690f3331d492cd90343 /Rakefile
parent4779cb88933b0409cc550129a420aabed14eabb6 (diff)
downloadbundler-8f4f10b9e2abd3a9015079da7226c8bd9127e247.tar.gz
Fix the Rakefile for building bundler gems
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 7e08fbb1..55c661d3 100644
--- a/Rakefile
+++ b/Rakefile
@@ -136,7 +136,6 @@ namespace :vendor do
rm_rf "lib/bundler/vendor"
end
end
-task :build => "vendor:build"
begin
require 'rake/gempackagetask'
@@ -163,7 +162,7 @@ desc "Build the gem"
task :gem => [:gemspec, :build] do
mkdir_p "pkg"
sh "gem build bundler.gemspec"
- mv "#{gemspec.full_name}.gem pkg"
+ mv "#{gemspec.full_name}.gem", "pkg"
end
desc "Install bundler"