summaryrefslogtreecommitdiff
path: root/lib/chef/mixin/homebrew_user.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/mixin/homebrew_user.rb')
-rw-r--r--lib/chef/mixin/homebrew_user.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/mixin/homebrew_user.rb b/lib/chef/mixin/homebrew_user.rb
index 854a954a90..ab6fb19563 100644
--- a/lib/chef/mixin/homebrew_user.rb
+++ b/lib/chef/mixin/homebrew_user.rb
@@ -36,7 +36,7 @@ class Chef
# the brew executable.
def find_homebrew_uid(provided_user = nil)
# They could provide us a user name or a UID
- unless provided_user.nil?
+ if provided_user
return provided_user if provided_user.is_a? Integer
return Etc.getpwnam(provided_user).uid
end