diff options
| author | zousar <[email protected]> | 2025-04-15 00:23:59 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2025-04-15 00:23:59 -0600 |
| commit | 2b0c494dece513477c94444c94250cc19a117873 (patch) | |
| tree | df95caebccd26b0e8f76db2771ffc6febf90e023 /src | |
| parent | Changelog (diff) | |
| download | zen-2b0c494dece513477c94444c94250cc19a117873.tar.xz zen-2b0c494dece513477c94444c94250cc19a117873.zip | |
Fix list-container positional args to remove query-path
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/cmds/builds_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp index 2d24db956..40cd8fa74 100644 --- a/src/zen/cmds/builds_cmd.cpp +++ b/src/zen/cmds/builds_cmd.cpp @@ -8925,8 +8925,8 @@ BuildsCommand::BuildsCommand() "Path to json or compactbinary to write query result to", cxxopts::value(m_ListResultPath), "<result-path>"); - m_ListContainerOptions.parse_positional({"query-path", "result-path"}); - m_ListContainerOptions.positional_help("query-path result-path"); + m_ListContainerOptions.parse_positional({"result-path"}); + m_ListContainerOptions.positional_help("result-path"); // list AddSystemOptions(m_ListOptions); |