starting the process of moving manifest mgmt to a dedicated subcommand

This commit is contained in:
Chris Punches
2025-03-16 23:16:40 -04:00
parent 172bc2e9c8
commit 2623bcf2b3
6 changed files with 116 additions and 5 deletions

View File

@@ -12,9 +12,10 @@
* @brief Enumeration of supported commands for the build module
*/
enum Command {
CMD_UNKNOWN, /**< Unknown or unsupported command */
CMD_HELP, /**< Display help information */
CMD_STAGE /**< Stage a new DPM package */
CMD_UNKNOWN, /**< Unknown or unsupported command */
CMD_HELP, /**< Display help information */
CMD_STAGE, /**< Stage a new DPM package */
CMD_MANIFEST, /**< Regenerate a stage manifest */
};
/**