summaryrefslogtreecommitdiffstats
path: root/SCons/Tool
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2022-05-15 23:02:12 (GMT)
committerMats Wichmann <mats@linux.com>2022-05-15 23:02:12 (GMT)
commit529d45c34df36355577bb0cb0abdba663c9aa596 (patch)
tree94109bc1d223572d020c1aeca4b2748d81c8772e /SCons/Tool
parentc816be1018bb63d3eba754e71281c6b6093c0a04 (diff)
downloadSCons-529d45c34df36355577bb0cb0abdba663c9aa596.zip
SCons-529d45c34df36355577bb0cb0abdba663c9aa596.tar.gz
SCons-529d45c34df36355577bb0cb0abdba663c9aa596.tar.bz2
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 <mats@linux.com>
Diffstat (limited to 'SCons/Tool')
-rw-r--r--SCons/Tool/MSCommon/common.py2
1 files changed, 1 insertions, 1 deletions
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():