Skip to content

Commit

Permalink
fix: add partialReport to brief
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Mar 31, 2024
1 parent a41307a commit 3c68849
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/program.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,16 @@ program.outBrief = (options) => {
},
];

if (options.partialReport) {
brief = [...brief, ...[
{
name: 'Previous report',
value: options.partialReport,
comment: '--partial-report data/report/...json',
},
]];
}

if (options.influxdb) {
brief = [...brief, ...[
{
Expand Down

0 comments on commit 3c68849

Please sign in to comment.