From 77aff5037482e2eeb6734e530e7809b4ead80af8 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Sun, 10 Apr 2016 06:05:28 +0000 Subject: [PATCH] print head --- urchin | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/urchin b/urchin index 5b64c10..2484810 100755 --- a/urchin +++ b/urchin @@ -705,8 +705,7 @@ main() { printf \#\ >> "${urchin_tmp}"/head fi if test "${format}" = urchin || test "${format}" = tap; then - echo Running tests at $(date +%Y-%m-%dT%H:%M:%S) \ - >> "${urchin_tmp}"/head + echo Running tests at $(date +%Y-%m-%dT%H:%M:%S) >> "${urchin_tmp}"/head fi if test "${format}" = tap; then @@ -754,8 +753,10 @@ main() { urchin_exit 1 fi + cat "${urchin_tmp}"/head report_outcome "${root}" "${format}" "${urchin_tmp}"/log "${start}" \ "${finish}" +# cat "${urchin_tmp}"/foot urchin_exit "${?}" }