diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-06-10 00:56:40 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-06-10 00:56:40 -0700 |
commit | 14ca7fdc284eeaac9c66abd5878d7b24bd439180 (patch) | |
tree | c37f85c36decb840662f65e6aafd55a570daf6c1 /bin | |
parent | af843190f9be71469c4a20ef8f9021b292c05588 (diff) | |
download | chef-14ca7fdc284eeaac9c66abd5878d7b24bd439180.tar.gz |
Should use /usr/bin/env
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chef-client | 4 | ||||
-rwxr-xr-x | bin/chef-indexer | 2 | ||||
-rwxr-xr-x | bin/chef-solo | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/bin/chef-client b/bin/chef-client index df7eaa7439..d7567ea5a8 100755 --- a/bin/chef-client +++ b/bin/chef-client @@ -1,4 +1,4 @@ -#!/usr/bin/ruby +#!/usr/bin/env ruby # # ./chef-client - Build a meal with chef # @@ -64,4 +64,4 @@ if config[:log_level] end c = Chef::Client.new -c.run
\ No newline at end of file +c.run diff --git a/bin/chef-indexer b/bin/chef-indexer index bb5d181599..0292002337 100755 --- a/bin/chef-indexer +++ b/bin/chef-indexer @@ -1,4 +1,4 @@ -#!/usr/bin/ruby +#!/usr/bin/env ruby # # ./chef-indexer - Build indexes from Chef Queues! # diff --git a/bin/chef-solo b/bin/chef-solo index 8fa9c1ee3e..194f2beeae 100755 --- a/bin/chef-solo +++ b/bin/chef-solo @@ -1,4 +1,4 @@ -#!/usr/bin/ruby +#!/usr/bin/env ruby # # ./chef-solo - Build a meal with chef, sans-server! # @@ -78,4 +78,4 @@ end compile.load_definitions compile.load_recipes cr = Chef::Runner.new(compile.node, compile.collection) -cr.converge
\ No newline at end of file +cr.converge |