Skip to content

Commit

Permalink
Adjust message
Browse files Browse the repository at this point in the history
  • Loading branch information
delsner committed Jun 5, 2024
1 parent b336d21 commit 27a4506
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ pub async fn pack(options: PackOptions) -> Result<()> {
Package::Conda(p) => conda_packages.push(p),
Package::Pypi(_) => {
if options.ignore_pypi_errors {
tracing::warn!("pypi packages are not supported in pixi-pack");
tracing::warn!(
"ignoring pypi package since pypi packages are not supported by pixi-pack"
);
} else {
anyhow::bail!("pypi packages are not supported in pixi-pack");
}
Expand Down

0 comments on commit 27a4506

Please sign in to comment.