From 014112b93ac0ce0b17177253b7f5e958bc01ae2f Mon Sep 17 00:00:00 2001 From: David Bailey Date: Sat, 12 Aug 2023 20:51:09 +0200 Subject: [PATCH] feat: add a bit of a clearer program output message --- bin/cpp_engine.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/cpp_engine.rb b/bin/cpp_engine.rb index 4a7ba00..2fbfb13 100644 --- a/bin/cpp_engine.rb +++ b/bin/cpp_engine.rb @@ -64,7 +64,9 @@ $core.add_artefact_engine do |engine| a.parent_artefact :executable, match a.add_step do + print "\n\nPROGRAM OUTPUT FOR #{match}:\n" print `./#{@target.sub(/\.[^.\/]*\Z/, '')}` + print "\n\n" end end end \ No newline at end of file