Ignore .lck files during backup
This commit is contained in:
parent
126d5df619
commit
bc2e34e28d
@ -42,6 +42,8 @@ public class CompressWorkdirProcess extends CompressProcess {
|
||||
return true;
|
||||
if (new File(getSourceDir(), "logs").equals(file))
|
||||
return true;
|
||||
if (file.isFile() && file.getName().endsWith(".lck"))
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user