Skip to content

Commit

Permalink
fix pixi.toml project name on init (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts authored Jun 26, 2023
1 parent e62cc4f commit 8e4302e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub async fn execute(args: Args) -> anyhow::Result<()> {
fs::create_dir_all(&dir).ok();

// Write pixi.toml
let name = manifest_path.file_name().unwrap().to_string_lossy();
let name = dir.file_name().unwrap().to_string_lossy();
let version = "0.1.0";
let author = get_default_author();
let channel = "conda-forge";
Expand Down

0 comments on commit 8e4302e

Please sign in to comment.