mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-14 12:13:22 +00:00
Add ".msf" to the list of files types we should ignore when building folders.
This commit is contained in:
parent
179fda3baa
commit
20f8c5174f
@ -207,7 +207,8 @@ nsShouldIgnoreFile(nsString& name)
|
||||
name.RFind(".toc", PR_TRUE) == len - 4)
|
||||
return PR_TRUE;
|
||||
#endif
|
||||
if ((len > 4 && name.RFind(".sbd", PR_TRUE) == len - 4))
|
||||
if ((len > 4 && name.RFind(".sbd", PR_TRUE) == len - 4) ||
|
||||
(len > 4 && name.RFind(".msf", PR_TRUE) == len - 4))
|
||||
return PR_TRUE;
|
||||
return PR_FALSE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user