From 4a71754be10996e29c20b5c5e99c7ca0d026b3c5 Mon Sep 17 00:00:00 2001 From: "Dmitry Yu. Naumov" <github@naumov.de> Date: Fri, 5 Oct 2018 16:20:26 +0200 Subject: [PATCH] [App] ogs; Capitalize CLI arguments' types. --- Applications/CLI/ogs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Applications/CLI/ogs.cpp b/Applications/CLI/ogs.cpp index 7cca4ec752a..1a8183b377e 100644 --- a/Applications/CLI/ogs.cpp +++ b/Applications/CLI/ogs.cpp @@ -68,12 +68,12 @@ int main(int argc, char* argv[]) "Path to the ogs6 project file.", true, "", - "PROJECT FILE"); + "PROJECT_FILE"); cmd.add(project_arg); TCLAP::ValueArg<std::string> outdir_arg("o", "output-directory", "the output directory to write to", - false, "", "output directory"); + false, "", "PATH"); cmd.add(outdir_arg); TCLAP::ValueArg<std::string> log_level_arg("l", "log-level", @@ -86,7 +86,7 @@ int main(int argc, char* argv[]) #else "all", #endif - "log level"); + "LOG_LEVEL"); cmd.add(log_level_arg); TCLAP::SwitchArg nonfatal_arg("", -- GitLab