summaryrefslogtreecommitdiff
path: root/yarns/implementations.yarn
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@gmail.com>2014-11-12 12:56:28 +0000
committerRichard Maw <richard.maw@gmail.com>2014-11-12 14:47:08 +0000
commite82909361a50f5046295a1453f48735752318696 (patch)
tree6bcd7429ec88dc0b0a325343556b5ee019a042ca /yarns/implementations.yarn
parent501a039172d066d0b0ea9071c5d82467e89de9a6 (diff)
downloadmorph-e82909361a50f5046295a1453f48735752318696.tar.gz
yarns: Report stderr on morph failure
Diffstat (limited to 'yarns/implementations.yarn')
-rw-r--r--yarns/implementations.yarn3
1 files changed, 2 insertions, 1 deletions
diff --git a/yarns/implementations.yarn b/yarns/implementations.yarn
index 6110148e..e1ae271f 100644
--- a/yarns/implementations.yarn
+++ b/yarns/implementations.yarn
@@ -34,7 +34,8 @@ we can test it later in a THEN step.
case $(cat "$DATADIR/morph-exit") in
0) echo "Morph succeeded!"
;;
- *) die "Morph should have succeeded, but didn't. Unexpected failure!"
+ *) cat "$DATADIR/result-latest" >&2
+ die "Morph should have succeeded, but didn't. Unexpected failure!"
;;
esac