summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Rozet <simon@rozet.name>2009-07-24 18:25:00 +0200
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-07-28 13:19:14 -0700
commit795680d6cff2db6150f460ddb26f5db00360c8f2 (patch)
tree5d42dbb74109bfaffe6f8096b69a58ff86cbff4e
parent9a9df6ecb45572fb5f56635171803fbb70648e92 (diff)
downloadbundler-795680d6cff2db6150f460ddb26f5db00360c8f2.tar.gz
Fix rake install; do not force use of sudo
Signed-off-by: Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 4b74e382cf..29db3b2bda 100644
--- a/Rakefile
+++ b/Rakefile
@@ -41,7 +41,7 @@ end
desc "install the gem locally"
task :install => [:package] do
- sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}}
+ sh %{gem install pkg/#{spec.name}-#{spec.version}}
end
desc "create a gemspec file"