Skip to content

Commit

Permalink
Merge pull request hpcc-systems#19252 from ghalliday/issue32918
Browse files Browse the repository at this point in the history
HPCC-32918 Allow wutool info to take multiple filter arguments

Reviewed-By: Shamser Ahmed <shamser.ahmed@lexisnexis.com>
Merged-by: Gavin Halliday <ghalliday@hpccsystems.com>
  • Loading branch information
ghalliday authored Nov 1, 2024
2 parents 6c01782 + f3a4e16 commit a7950eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/wutool/wutool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ static void process(IConstWorkUnit &w, IProperties *globals, const StringArray &
{
ScopeDumper dumper;
WuScopeFilter filter;
filter.addFilter(args.item(0));
ForEachItemIn(i, args)
filter.addFilter(args.item(i));
if (!filter.outputDefined())
filter.addOutputProperties(PTall);
filter.finishedFilter();
Expand Down

0 comments on commit a7950eb

Please sign in to comment.