summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@digia.com>2013-08-27 13:02:44 +0200
committerNiels Weber <niels.weber@digia.com>2013-08-27 13:38:04 +0200
commita45d263aba2d3cdd7f5b2fdd538a3e88cf11250b (patch)
treec36e5c5589ead45e7c31bbcf4a72c11d8d0c6012
parentfe992358dbd449fbdc303af38907e62098daad44 (diff)
Add a line to --help about multiple repositories.1.4.0
Also document --updater and --manage-packages options. Task-number: QTIFW-348 Task-number: QTIFW-350 Change-Id: Icdb2fe04adbdebc11cf929b5f2f6880835c989ec Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
-rw-r--r--src/sdk/installerbase_p.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sdk/installerbase_p.cpp b/src/sdk/installerbase_p.cpp
index 0d59e541e..1df3e0943 100644
--- a/src/sdk/installerbase_p.cpp
+++ b/src/sdk/installerbase_p.cpp
@@ -308,6 +308,10 @@ void InstallerBase::showUsage()
<< "Show current version" << std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --checkupdates" << std::setw(40)
<< "Check for updates and return an XML file of the available updates" << std::endl;
+ std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --updater" << std::setw(40)
+ << "Start in updater mode." << std::endl;
+ std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --manage-packages" << std::setw(40)
+ << "Start in packagemanager mode." << std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --proxy" << std::setw(40)
<< "Set system proxy on Win and Mac. This option has no effect on Linux." << std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --verbose" << std::setw(40)
@@ -337,6 +341,8 @@ void InstallerBase::showUsage()
<< std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " " << std::setw(40) << "Note: URI "
"must be prefixed with the protocol, i.e. file:/// , http:// or ftp://" << std::endl;
+ std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " " << std::setw(40) << "Note: URI "
+ "can consist of multiple addresses separated by comma only." << std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left) << " --show-virtual-components"
<< std::setw(40) << "Show virtual components in package manager and updater" << std::endl;
std::cout << std::setw(55) << std::setiosflags(std::ios::left)