Commit 2199fdc

mo khan <mo@mokhan.ca>
2026-09-07 19:25:20
fix: migrate to Output#doing's new (name, args, state:) signature
Toolbox#header was removed from elelem core; Output#doing now takes plain data instead of a pre-rendered string.
1 parent 85d6c9b
Changed files (1)
lib
elelem
lib/elelem/tools/verify.rb
@@ -35,7 +35,7 @@ Elelem.configure do |config|
     ) do |args|
       path = args["path"]
       Verifiers.for(path).inject({ verified: [] }) do |memo, cmd|
-        agent.output.say agent.toolbox.header("execute", { "command" => cmd })
+        agent.output.doing("execute", { "command" => cmd })
         v = agent.toolbox.run("execute", { "command" => cmd })
         break v.merge(path: path, command: cmd) if v[:exit_status] != 0