From 8ccffd32b7d8a60f9276e36f96360e73db4d6a6c Mon Sep 17 00:00:00 2001 From: Ryan Jacobs Date: Mon, 13 Apr 2020 07:35:03 -0700 Subject: [PATCH] hotfix: cache name = c.cache.$USER to prevent name collisions --- c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c b/c index d82a75d..3de0fa3 100755 --- a/c +++ b/c @@ -80,7 +80,7 @@ if [[ -n "$C_CACHE_PATH" ]]; then tmproot="$C_CACHE_PATH" else [[ -z "$TMPDIR" ]] && TMPDIR="/tmp" - tmproot="$TMPDIR/c.cache" + tmproot="$TMPDIR/c.cache.$USER" fi mkdir -p "$tmproot"