Make returncode 0 for --version and --help

This commit is contained in:
Joas Schilling 2015-10-23 15:17:29 +02:00
Родитель 6fae06f1d0
Коммит 6d87bd15cd
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -158,14 +158,14 @@ void help()
std::cout << " -h Sync hidden files,do not ignore them" << std::endl;
std::cout << " --version, -v Display version and exit" << std::endl;
std::cout << "" << std::endl;
exit(1);
exit(0);
}
void showVersion() {
const char *binaryName = APPLICATION_EXECUTABLE "cmd";
std::cout << binaryName << " version " << qPrintable(Theme::instance()->version()) << std::endl;
exit(1);
exit(0);
}
void parseOptions( const QStringList& app_args, CmdOptions *options )