When building, print the raw store path to stdout.

This commit is contained in:
R-VdP 2023-02-17 11:55:22 +01:00
parent 71c2e5bf21
commit 4cde2facf9
No known key found for this signature in database

View file

@ -100,6 +100,8 @@ fn go(action: Action) -> Result<()> {
fn build(flake_uri: String) -> Result<()> {
let store_path = do_build(flake_uri)?;
log::info!("{store_path}");
// Print the raw store path to stdout
println!("{store_path}");
Ok(())
}