work around a regression caused by the new 'echo' implementation

This commit is contained in:
Araq
2014-12-28 22:24:29 +01:00
parent f73938218e
commit a0ad3aa183

View File

@@ -97,7 +97,9 @@ proc checkpoint*(msg: string) =
template fail* =
bind checkpoints
for msg in items(checkpoints):
echo msg
# this used to be 'echo' which now breaks due to a bug. XXX will revisit
# this issue later.
stdout.writeln msg
when not defined(ECMAScript):
if abortOnError: quit(1)