aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-10-29 22:47:17 -0500
committerJack Nagel2014-10-29 22:47:17 -0500
commit9dd4d49e6b7cafdf82c3cbcc66de9febabd6c766 (patch)
tree702ef21d5372219853a166c11164aebbd7d264ab /Library
parent39a5bbaa6305381b730d4ae09f95cf22e506117d (diff)
downloadhomebrew-9dd4d49e6b7cafdf82c3cbcc66de9febabd6c766.tar.bz2
audit: compare file mode directly
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 2bc10882e..e968bf8af 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -95,7 +95,7 @@ class FormulaAuditor
end
def audit_file
- unless formula.path.stat.mode.to_s(8) == "100644"
+ unless formula.path.stat.mode == 0100644
problem "Incorrect file permissions: chmod 644 #{formula.path}"
end