This commit is contained in:
cyberpwn 2021-08-30 08:37:19 -04:00
parent 801c44389e
commit c8c4a0f61b

View File

@ -47,6 +47,11 @@ public class ReactiveFolder {
if (checkCycle % 3 == 0 ? fw.checkModified() : fw.checkModifiedFast()) { if (checkCycle % 3 == 0 ? fw.checkModified() : fw.checkModifiedFast()) {
for (File i : fw.getCreated()) { for (File i : fw.getCreated()) {
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) { if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
if(i.getPath().contains(".iris"))
{
continue;
}
modified = true; modified = true;
break; break;
} }
@ -54,6 +59,11 @@ public class ReactiveFolder {
if (!modified) { if (!modified) {
for (File i : fw.getChanged()) { for (File i : fw.getChanged()) {
if(i.getPath().contains(".iris"))
{
continue;
}
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) { if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
modified = true; modified = true;
break; break;
@ -63,6 +73,11 @@ public class ReactiveFolder {
if (!modified) { if (!modified) {
for (File i : fw.getDeleted()) { for (File i : fw.getDeleted()) {
if(i.getPath().contains(".iris"))
{
continue;
}
if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) { if (i.getName().endsWith(".iob") || i.getName().endsWith(".json") || i.getName().endsWith(".js")) {
modified = true; modified = true;
break; break;