summaryrefslogtreecommitdiff
path: root/yarns/morph.shell-lib
diff options
context:
space:
mode:
Diffstat (limited to 'yarns/morph.shell-lib')
-rw-r--r--yarns/morph.shell-lib5
1 files changed, 3 insertions, 2 deletions
diff --git a/yarns/morph.shell-lib b/yarns/morph.shell-lib
index 05c11bcc..9d67f2ab 100644
--- a/yarns/morph.shell-lib
+++ b/yarns/morph.shell-lib
@@ -37,11 +37,12 @@ run_morph()
{
{
set +e
- "$SRCDIR"/morph \
+ "$SRCDIR"/morph --verbose \
--cachedir-min-space=0 --tempdir-min-space=0 \
--no-default-config --config "$DATADIR/morph.conf" "$@" \
- 2> "$DATADIR/result-$1"
+ 2> "$DATADIR/result-$1" > "$DATADIR/out-$1"
local exit_code="$?"
+ cat "$DATADIR/out-$1"
cat "$DATADIR/result-$1" >&2
return "$exit_code"
}