Added validate nag for junk files whose names end with a tilde
This commit is contained in:
parent
a44a48ae4e
commit
35e77241ed
2 changed files with 2 additions and 1 deletions
|
@ -315,7 +315,7 @@ public class ModUtilities {
|
|||
boolean modValid = true;
|
||||
boolean seenAppend = false;
|
||||
|
||||
Pattern junkFilePtn = Pattern.compile( "[.]DS_Store$|^thumbs[.]db$" );
|
||||
Pattern junkFilePtn = Pattern.compile( "[.]DS_Store$|^thumbs[.]db$|~$" );
|
||||
|
||||
Pattern validRootDirPtn = Pattern.compile( "^(?:audio|data|fonts|img|mod-appendix)/" );
|
||||
List<String> seenJunkDirs = new ArrayList<String>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue