From 529d45c34df36355577bb0cb0abdba663c9aa596 Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Sun, 15 May 2022 17:02:12 -0600 Subject: Drop leading '.' from cachefile name It doesn't need to be named .scons_msvc_cache.json, does not feel like it's really a "hidden" file, it'a a cache. Already renaming in this PR (adding the .json suffix) so sneak this change in as well. Signed-off-by: Mats Wichmann --- SCons/Tool/MSCommon/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Tool/MSCommon/common.py b/SCons/Tool/MSCommon/common.py index e009fd5..35a55b2 100644 --- a/SCons/Tool/MSCommon/common.py +++ b/SCons/Tool/MSCommon/common.py @@ -96,7 +96,7 @@ else: # SCONS_CACHE_MSVC_CONFIG is public, and is documented. CONFIG_CACHE = os.environ.get('SCONS_CACHE_MSVC_CONFIG') if CONFIG_CACHE in ('1', 'true', 'True'): - CONFIG_CACHE = os.path.join(os.path.expanduser('~'), '.scons_msvc_cache.json') + CONFIG_CACHE = os.path.join(os.path.expanduser('~'), 'scons_msvc_cache.json') def read_script_env_cache(): -- cgit v0.12