summaryrefslogtreecommitdiffstats
path: root/crates/driver/src/driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/driver/src/driver.rs')
-rw-r--r--crates/driver/src/driver.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/driver/src/driver.rs b/crates/driver/src/driver.rs
index d7106c3..375c567 100644
--- a/crates/driver/src/driver.rs
+++ b/crates/driver/src/driver.rs
@@ -121,7 +121,9 @@ impl<'ctx> CompletionState<'ctx> {
for (task_ref, task) in tasks.iter() {
println!();
println!("{:#}", task_ref);
- println!(" input: {}", task.input_hash);
+ if let Some(hash) = task.input_hash {
+ println!(" input: {}", hash);
+ }
if let Some(hash) = task.layer {
println!(" layer: {}", hash);
}