From ce4d5ad1d74367e58fcbb0adf7f8bcf7de9d6ed6 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Thu, 31 Jul 2025 09:46:38 -0400 Subject: [PATCH] fix: Remove default value of native for platform arg Closes #508 --- src/commands/generate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/generate.rs b/src/commands/generate.rs index bfe5566..3276aa9 100644 --- a/src/commands/generate.rs +++ b/src/commands/generate.rs @@ -72,7 +72,7 @@ pub struct GenerateCommand { /// Inspect the image for a specific platform /// when retrieving the version. - #[arg(long, default_value = "native")] + #[arg(long)] platform: Option, /// Skips validation of the recipe file.