# HG changeset patch # User Heiko Schlittermann # Date 1448307131 -3600 # Node ID 7e3ff0a0781d4f28a326909d45b365a0029d58c1 # Parent 8fa76c432f0ce41f256e3527a33f430c542da6e7 Name the output according to the Exim version diff -r 8fa76c432f0c -r 7e3ff0a0781d run --- a/run Sat Nov 21 21:31:10 2015 +0100 +++ b/run Mon Nov 23 20:32:11 2015 +0100 @@ -9,10 +9,10 @@ platforms=$(find platforms -mindepth 1 -maxdepth 1 -type d) fi -out=1 - for platform in $platforms; do system=$(basename $platform) + out=out-$(docker run --entrypoint git eximtest/$system describe --tags --dirty=+) + mkdir -p "$out" docker run --hostname foo.site -i -t eximtest/$system -CONTINUE "$@" \ - |& { test "$out" && mkdir -p out && tee out/log.$system || cat; } + |& tee "$out/log.$system" done