Resume --resume or -R can now be used with bte import

This commit is contained in:
Panagiotis Koutsourakis
2014-07-23 15:42:38 +03:00
committed by Kostas Stamatis
parent bf3915880d
commit c5747c4127

View File

@@ -373,10 +373,10 @@ public class ItemImport
}
// can only resume for adds
if (isResume && !"add".equals(command))
if (isResume && !"add".equals(command) && !"add-bte".equals(command))
{
System.out
.println("Error - resume option only works with --add command");
.println("Error - resume option only works with the --add or the --add-bte commands");
System.exit(1);
}