From: Richard Hartmann Date: Sat, 28 Dec 2013 14:21:20 +0000 (+0100) Subject: vcsh: Improve error message X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/20e3b19c49f00cc18ad6b468c4a19a4b4275d30d?ds=inline;hp=-c vcsh: Improve error message --- 20e3b19c49f00cc18ad6b468c4a19a4b4275d30d 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