From 888d8498ad8a2b148399031e0855afb6fb32d90a Mon Sep 17 00:00:00 2001 From: Bela Stoyan Date: Thu, 6 Jun 2024 10:24:24 +0200 Subject: [PATCH] manifest_path should not be required (#15) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c96b923..54bb856 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,7 +46,7 @@ enum Commands { auth_file: Option, /// The path to 'pixi.toml' or 'pyproject.toml' - #[arg(required = true, default_value = cwd().join("pixi.toml").into_os_string())] + #[arg(default_value = cwd().join("pixi.toml").into_os_string())] manifest_path: PathBuf, /// Output file to write the pack to