From a484300263ebdfc247fd9d4292bd8a7bcd9b4ab0 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Thu, 7 Apr 2016 02:48:58 +0000 Subject: [PATCH] oops --- urchin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/urchin b/urchin index c8f2986..f4bb4fe 100755 --- a/urchin +++ b/urchin @@ -86,12 +86,14 @@ mktemp_dir() { rm "${tmp}" fi mkdir "${tmp}" + echo "${tmp}" } mktemp_file() { tmp=$(mktemp) if ! test -f "${tmp}"; then > "${tmp}" fi + echo "${tmp}" }