Skip to content

Commit 717d12e

Browse files
authored
fix: Change default manifest path to cwd (#99)
1 parent a8cfa68 commit 717d12e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ enum Commands {
4747
auth_file: Option<PathBuf>,
4848

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

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

0 commit comments

Comments
 (0)