Skip to content

Commit

Permalink
fix: Change default manifest path to cwd (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
delsner authored Feb 19, 2025
1 parent a8cfa68 commit 717d12e
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 @@ -47,7 +47,7 @@ enum Commands {
auth_file: Option<PathBuf>,

/// The path to `pixi.toml`, `pyproject.toml`, or the project directory
#[arg(default_value = cwd().join("pixi.toml").into_os_string())]
#[arg(default_value = cwd().into_os_string())]
manifest_path: PathBuf,

/// Output file to write the pack to (will be an archive)
Expand Down

0 comments on commit 717d12e

Please sign in to comment.