diff options
author | Tim Hinderliter <tim@opscode.com> | 2010-02-02 21:19:05 -0800 |
---|---|---|
committer | Tim Hinderliter <tim@opscode.com> | 2010-02-02 21:19:05 -0800 |
commit | b765e6eef7d21737af39b1dccc16021a45ad0c4c (patch) | |
tree | eb1d1d8a9388ecec51c7be5c482254169527f67c /Rakefile | |
parent | 065c909660bb1509224e7f7525adc7bc90e4512b (diff) | |
download | mixlib-authentication-b765e6eef7d21737af39b1dccc16021a45ad0c4c.tar.gz |
removed 'sudo' from 'gem install' line in rule for 'rake install'
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,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" |