Ignore .git directory in Gridarta plugin scripts
parent
32128f1751
commit
a1821b148b
|
@ -96,6 +96,7 @@ while (it.hasNext()) {
|
|||
&& !name.equals(".emergency")
|
||||
&& !name.equals("ChangeLog")
|
||||
&& !name.equals("COPYING")
|
||||
&& !path.contains("/.git/")
|
||||
&& !path.contains("/Info/")
|
||||
&& !path.contains("/editor/scripts/")) {
|
||||
normalizeMap(file, file.getPath().substring(mapDefaultFolder.length()));
|
||||
|
|
|
@ -118,6 +118,7 @@ try {
|
|||
&& !name.equals("ChangeLog")
|
||||
&& !name.equals("COPYING")
|
||||
&& !name.equals("TODO")
|
||||
&& !path.contains("/.git/")
|
||||
&& !path.contains("/Info/")
|
||||
&& !path.contains("/editor/scripts/")) {
|
||||
checkMap(file, file.getPath().substring(mapDefaultFolder.length()));
|
||||
|
|
Loading…
Reference in New Issue