Do not silently ignore crawl/multi now working together #2765. (#2889)

This commit is contained in:
Peter Hedenskog 2020-02-24 15:52:08 +01:00 committed by GitHub
parent 5c9b8cbf76
commit cea0b68f95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,10 @@ function validateInput(argv) {
return 'You can only run with one browser at a time.';
}
if (argv.crawler && argv.crawler.depth && argv.multi) {
return 'Crawl do not work running in multi mode.';
}
if (
argv.urlAlias &&
argv._ &&