Skip to content

Commit

Permalink
Show anonymous environment directory
Browse files Browse the repository at this point in the history
  • Loading branch information
rcook committed Apr 6, 2023
1 parent cf55d49 commit e082bdc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/commands/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ pub fn do_info(app: &App) -> Result<()> {
"Project configuration file: {}",
project.config_path.display()
);
println!("python_version: {}", project.python_version);
println!("Python version: {}", project.python_version);
println!(
"tag: {}",
"Build tag: {}",
project
.tag
.as_ref()
.map(Tag::to_string)
.unwrap_or(String::from("(none)"))
)
);
let anonymous_env_dir = app.anonymous_env_dir(&project.config_path)?;
println!("Environment directory: {}", anonymous_env_dir.display());
}
None => {}
}
Expand Down

0 comments on commit e082bdc

Please sign in to comment.