diff --git a/lib/components/fabro-workflow/src/handler/command.rs b/lib/components/fabro-workflow/src/handler/command.rs index 05604d3e6..f2ec52697 100644 --- a/lib/components/fabro-workflow/src/handler/command.rs +++ b/lib/components/fabro-workflow/src/handler/command.rs @@ -233,7 +233,7 @@ fn validated_stdin_source(node: &Node) -> Result, String> { match node.context_key_attr("stdin_source") { ContextKeyAttr::Absent => Ok(None), ContextKeyAttr::Invalid => Err(format!( - "Command node '{}' requires 'stdin_source' to be a non-empty string", + "Node '{}' requires 'stdin_source' to be a non-empty string", node.id )), ContextKeyAttr::Present(source) => Ok(Some(source)),