Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/projmgr/src/ProjMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Options:\n\
-d, --debug Enable debug messages\n\
-D, --dry-run Enable dry-run\n\
-e, --export arg Set suffix for exporting <context><suffix>.cprj retaining only specified versions\n\
-f, --filter arg [...] Filter words, repeat options or quote for words\n\
-f, --filter arg [...] Filter output by word or string; repeat the option for multiple filters\n\
-g, --generator arg Code generator identifier\n\
-l, --load arg Set policy for packs loading [latest | all | required]\n\
-L, --clayer-path arg Set search path for external clayers\n\
Expand Down Expand Up @@ -148,7 +148,7 @@ int ProjMgr::ParseCommandLine(int argc, char** argv) {

cxxopts::Option solution("s,solution", "Input csolution.yml file", cxxopts::value<string>());
cxxopts::Option context("c,context", "Input context names [<project-name>][.<build-type>][+<target-type>]", cxxopts::value<std::vector<std::string>>());
cxxopts::Option filter("f,filter", "Filter words, repeat options or quote for words", cxxopts::value<vector<string>>());
cxxopts::Option filter("f,filter", "Filter output by word or string; repeat the option for multiple filters", cxxopts::value<vector<string>>());
cxxopts::Option help("h,help", "Print usage");
cxxopts::Option generator("g,generator", "Code generator identifier", cxxopts::value<string>());
cxxopts::Option load("l,load", "Set policy for packs loading [latest | all | required]", cxxopts::value<string>());
Expand Down
Loading