feat: add a bit of a clearer program output message

This commit is contained in:
David Bailey 2023-08-12 20:51:09 +02:00
parent 51509ff071
commit 014112b93a

View file

@ -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