Skip to content

Commit

Permalink
manifest_path should not be required (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbe7a authored Jun 6, 2024
1 parent bbab2d9 commit 888d849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ enum Commands {
auth_file: Option<PathBuf>,

/// 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
Expand Down

0 comments on commit 888d849

Please sign in to comment.