From 9dd4d49e6b7cafdf82c3cbcc66de9febabd6c766 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 29 Oct 2014 22:47:17 -0500 Subject: audit: compare file mode directly --- Library/Homebrew/cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') 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 -- cgit v1.2.3