The unified diff between revisions [869f0c37..] and [e24ccc23..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'std_hooks.lua'
#
#
# patch "std_hooks.lua"
# from [c06a28443baa42ca4d4f349a6dd9653d25fa8c0f]
# to [9b1a27e30129929aa366223e51f1c11ec918fc93]
#
============================================================
--- std_hooks.lua c06a28443baa42ca4d4f349a6dd9653d25fa8c0f
+++ std_hooks.lua 9b1a27e30129929aa366223e51f1c11ec918fc93
@@ -86,6 +86,11 @@ function ignore_file(name)
if (string.find(name, "/autom4te.cache/")) then return true end
if (string.find(name, "^.deps/")) then return true end
if (string.find(name, "/.deps/")) then return true end
+ -- Cons/SCons detritus:
+ if (string.find(name, "^.consign$")) then return true end
+ if (string.find(name, "/.consign$")) then return true end
+ if (string.find(name, "^.sconsign$")) then return true end
+ if (string.find(name, "/.sconsign$")) then return true end
-- other VCSes:
if (string.find(name, "^CVS/")) then return true end
if (string.find(name, "/CVS/")) then return true end