Skip to content

Commit

Permalink
HPCC-32918 Allow wutool info to take multiple filter arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
  • Loading branch information
ghalliday committed Oct 31, 2024
1 parent 50635e7 commit f3a4e16
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 f3a4e16

Please sign in to comment.