Skip to content

Commit

Permalink
fix: add cfg guard in main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Jul 30, 2024
1 parent d73a049 commit 7bff5e0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ async fn main() -> miette::Result<()> {
.await
}
Some(SubCommands::Upload(upload_args)) => upload_from_args(upload_args).await,
#[cfg(feature = "recipe-generator")]
Some(SubCommands::GenerateRecipe(args)) => generate_recipe(args).await,
Some(SubCommands::Auth(args)) => rattler::cli::auth::execute(args).await.into_diagnostic(),
None => {
Expand Down

0 comments on commit 7bff5e0

Please sign in to comment.