# HG changeset patch # User timeless # Date 2016-01-12 15:58:59 # Node ID 0029c2bebc23182c34f83fa22abde1d5d4aebc51 # Parent 2d294dada4f833d12ec0a7fbfde4c6d1c58cb800 check-code: export needs a space to avoid false positives diff --git a/contrib/check-code.py b/contrib/check-code.py --- a/contrib/check-code.py +++ b/contrib/check-code.py @@ -107,7 +107,7 @@ testpats = [ "use egrep for extended grep syntax"), (r'/bin/', "don't use explicit paths for tools"), (r'[^\n]\Z', "no trailing newline"), - (r'export.*=', "don't export and assign at once"), + (r'export .*=', "don't export and assign at once"), (r'^source\b', "don't use 'source', use '.'"), (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"), (r'ls +[^|\n-]+ +-', "options to 'ls' must come before filenames"),