Stefano Lattarini <stefano.lattarini@xxxxxxxxx> writes: >>> +# mktemp is not available on all platforms (missing from msysgit) >>> +# Use a hard-coded tmp dir if it is not available >>> +tmp="$(mktemp -d -t tmp.XXXXXX 2>/dev/null)" || { >>> + tmp=/tmp/git-diffall-tmp >>> +} >> ... > # mktemp is not available on all platforms (missing from msysgit) > tmp=$(mktemp -d -t tmp.XXXXXX 2>/dev/null) || { > tmp=/tmp/git-diffall-tmp.$$ > mkdir "$tmp" || fatal "couldn't create temporary directory" > } > >>> +mkdir -p "$tmp" >> > At which point this should be removed, of course. Good eyes; thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html