runner: add newline to runqs message

This commit is contained in:
Luna 2019-09-10 22:08:35 -03:00
parent 49cc7221b0
commit 66a7356502
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ pub const Runner = struct {
);
defer proc.deinit();
std.debug.warn("running '{} {}'", program, out_path);
std.debug.warn("running '{} {}'\n", program, out_path);
_ = try proc.spawnAndWait();
}