Skip to content

Commit

Permalink
Inform about the addition of the package itself as an editable install
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-lacroix committed Apr 2, 2024
1 parent 633cc65 commit 35595fe
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/cli/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@ pub async fn execute(args: Args) -> miette::Result<()> {
pyproject_manifest_path.to_string_lossy(),
e
);
} else {
// Inform about the addition of the package itself as an editable dependency of the project
eprintln!(
"{}Added package '{}' as an editable dependency.",
console::style(console::Emoji("✔ ", "")).green(),
name
);
}
}

Expand Down

0 comments on commit 35595fe

Please sign in to comment.