The option is called "server" and not "uri"

(It's the parameter of that option that is called "uri".)

Change-Id: If247a932bf8879b4eb626d850e813c3e8d5a7d60
This commit is contained in:
Tor Lillqvist
2018-07-10 21:15:47 +03:00
parent 8ad281e12f
commit c783485a3b

View File

@ -208,7 +208,7 @@ void Tool::handleOption(const std::string& optionName,
_destinationDir = value;
else if (optionName == "parallelism")
_numWorkers = std::max(std::stoi(value), 1);
else if (optionName == "uri")
else if (optionName == "server")
_serverURI = value;
else if (optionName == "no-check-certificate")
{