summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Hinderliter <tim@opscode.com>2010-02-02 21:41:37 -0800
committerTim Hinderliter <tim@opscode.com>2010-02-02 21:41:37 -0800
commitc11f35770db22be3906dfcfaa50a5d22dd7802e9 (patch)
treea0b95793ad2c8859bc2cbc537a1d6941fb9656a3 /Rakefile
parent02e0a7d96069c4c4736a0b6251af5fde06772df0 (diff)
downloadohai-c11f35770db22be3906dfcfaa50a5d22dd7802e9.tar.gz
removed 'sudo' from 'gem install' part of 'rake install' rule
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 5b55d62c..b4118176 100644
--- a/Rakefile
+++ b/Rakefile
@@ -51,7 +51,7 @@ end
desc "install the gem locally"
task :install => [:package] do
- sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}}
+ sh %{gem install pkg/#{GEM}-#{GEM_VERSION}}
end
desc "create a gemspec file"