From 20e3b19c49f00cc18ad6b468c4a19a4b4275d30d Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Sat, 28 Dec 2013 15:21:20 +0100 Subject: [PATCH] vcsh: Improve error message --- vcsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcsh b/vcsh index af41890..60d0407 100755 --- a/vcsh +++ b/vcsh @@ -362,7 +362,7 @@ write_gitignore() { # Use the template GNU mktemo defaults to # The downside to this is that we need to set TMPDIR explicitly; this may or may not be empty, so... [ -z "$TMPDIR" ] && TMPDIR='/tmp' - tempfile=$(mktemp ${TMPDIR}/tmp.XXXXXXXXXX) || fatal "could not create tempfile" 51 + tempfile=$(mktemp ${TMPDIR}/tmp.XXXXXXXXXX) || fatal "could not create tempfile: '${tempfile}'" 51 echo '*' > "$tempfile" || fatal "could not write to '$tempfile'" 57 for gitignore in $gitignores; do -- 2.39.2