print when running a process

This commit is contained in:
2021-08-02 21:35:05 -06:00
parent d3fb044e13
commit 0ae02be74d

View File

@@ -410,6 +410,9 @@ class Prelude {
}
public static function assertProcess(command:String, args:Array<String>, ?inputLines:Array<String>, fullProcess = true):String {
#if test
Prelude.print('running $command $args $inputLines');
#end
if (inputLines != null) {
for (line in inputLines) {
if (line.indexOf("\n") != -1) {