Skip to content

Commit 8ccffd3

Browse files
committed
hotfix: cache name = c.cache.$USER to prevent name collisions
1 parent 98b1be1 commit 8ccffd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ if [[ -n "$C_CACHE_PATH" ]]; then
8080
tmproot="$C_CACHE_PATH"
8181
else
8282
[[ -z "$TMPDIR" ]] && TMPDIR="/tmp"
83-
tmproot="$TMPDIR/c.cache"
83+
tmproot="$TMPDIR/c.cache.$USER"
8484
fi
8585
mkdir -p "$tmproot"
8686

0 commit comments

Comments
 (0)