Commit f47b5b1

mo khan <mo@mokhan.ca>
2026-01-22 02:18:17
fix: print tool header before verification command
1 parent fa1b38e
Changed files (1)
lib
elelem
plugins
lib/elelem/plugins/verify.rb
@@ -34,7 +34,7 @@ module Elelem
     ) do |a|
       path = a["path"]
       Verifiers.for(path).inject({verified: []}) do |memo, cmd|
-        $stdout.puts "\n  -> verify: #{cmd}"
+        $stdout.puts toolbox.header("execute", { "command" => cmd })
         v = toolbox.run("execute", { "command" => cmd })
         return v.merge(path: path, command: cmd) if v[:exit_status] != 0