Skip to content

Commit 3462909

Browse files
committed
Corrected location of hard-coded tmp directory
In commit 1959a18, the leading '/tmp' was mistakenly dropped from the hard-coded tmp dir location. Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
1 parent f36e488 commit 3462909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-diffall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ cd "$cdup" || {
4646
# mktemp is not available on all platforms (missing from msysgit)
4747
# Use a hard-coded tmp dir if it is not available
4848
tmp="$(mktemp -d -t tmp.XXXXXX 2>/dev/null)" || {
49-
tmp=/git-diffall-tmp.$$
49+
tmp=/tmp/git-diffall-tmp.$$
5050
mkdir "$tmp" || exit 1
5151
}
5252

0 commit comments

Comments
 (0)