aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-10-18 10:00:45 -0700
committerAdam Vandenberg2011-10-18 10:00:45 -0700
commitbb6a5df758c947f527791035d3502b9defa4dc04 (patch)
treee4b18c9328a784db6e9597a32e4079ef583396d3 /Library
parent7c8f42634f5888780a3ee6bb9fec76852720f086 (diff)
downloadhomebrew-bb6a5df758c947f527791035d3502b9defa4dc04.tar.bz2
audit: complain more about tabs
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 1a57ab80a..5a4a5e05c 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -102,9 +102,9 @@ def audit_formula_text name, text
problems << " * Use separate make calls."
end
- if text =~ /^\t/
+ if text =~ /^[ ]*\t/
problems << " * Use spaces instead of tabs for indentation"
- end if strict?
+ end
# Formula depends_on gfortran
if text =~ /^\s*depends_on\s*(\'|\")gfortran(\'|\").*/