When building, print the raw store path to stdout.
This commit is contained in:
parent
71c2e5bf21
commit
4cde2facf9
1 changed files with 2 additions and 0 deletions
|
|
@ -100,6 +100,8 @@ fn go(action: Action) -> Result<()> {
|
||||||
fn build(flake_uri: String) -> Result<()> {
|
fn build(flake_uri: String) -> Result<()> {
|
||||||
let store_path = do_build(flake_uri)?;
|
let store_path = do_build(flake_uri)?;
|
||||||
log::info!("{store_path}");
|
log::info!("{store_path}");
|
||||||
|
// Print the raw store path to stdout
|
||||||
|
println!("{store_path}");
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue