summaryrefslogtreecommitdiff
path: root/yarns/morph.shell-lib
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2014-08-12 17:59:14 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2014-08-12 18:01:57 +0100
commit6241d4466599406e3ad0a176c70fcbecdfdd1b64 (patch)
tree1315974add9e092dfd58d270125c1d9b066d22a6 /yarns/morph.shell-lib
parent1a6fb660b94228745efc4543138b9dc1fa50e912 (diff)
parenta74e2caafbeb49a49f542514590f720f6b215a6d (diff)
downloadmorph-6241d4466599406e3ad0a176c70fcbecdfdd1b64.tar.gz
Merge remote-tracking branch 'origin/baserock/richardmaw/S11416/no-unnecessary-temp-branches'
Reviewed-by: Daniel Silverstone
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"
}