You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Review all commands and update the argument definitions to consistently use #[arg], as it aligns with the examples provided in the clap library documentation: https://github.com/clap-rs/clap
The text was updated successfully, but these errors were encountered:
In the code, we currently use both
#[arg]
and#[clap]
to define arguments, for example:In https://github.com/r0gue-io/pop-cli/blob/main/crates/pop-cli/src/commands/build/spec.rs#L135C2-L139C27
Review all commands and update the argument definitions to consistently use
#[arg]
, as it aligns with the examples provided in the clap library documentation: https://github.com/clap-rs/clapThe text was updated successfully, but these errors were encountered: