Hi,
> File lockFile = new File(repoDir+".lock");
> if (lockFile.exists()) {
> lockFile.delete();So you delete the .lock file in your code? Could you explain why you do that? As far as I know, it is never not required to delete the file manually. Regards, Thomas
