summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-04-19 19:14:48 -0700
committerAndre Arko <andre@arko.net>2010-04-19 19:14:48 -0700
commit0ef2bbdd08221b9573072b4fade85fa98870501f (patch)
tree19861f44a328ced2393356aeffd40867df9ac146
parent2c96fa737f86bf1970d2abcbda7f105dd2849f28 (diff)
downloadbundler-0ef2bbdd08221b9573072b4fade85fa98870501f.tar.gz
Fix `rake install` task
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 08f758be5b..723fbcdb26 100644
--- a/Rakefile
+++ b/Rakefile
@@ -91,7 +91,7 @@ end
desc "install the gem locally"
task :install => :package do
- sh %{gem install pkg/#{spec.name}-#{spec.version}}
+ sh %{gem install pkg/#{gemspec.name}-#{gemspec.version}}
end
desc "validate the gemspec"