diff --git a/scripts/install.py b/scripts/install.py index e027c7322..288b19b90 100755 --- a/scripts/install.py +++ b/scripts/install.py @@ -835,10 +835,10 @@ def _default_installable_cache(): """In general, the installable files do not change much, so find a host/user specific location to cache files.""" user = _getuser() - cache_dir = "/var/tmp/%s/install.cache" % user + cache_dir = "/var/tmp/%s/sg.install.cache" % user if _get_platform() == 'windows': cache_dir = os.path.join(tempfile.gettempdir(), \ - 'install.cache.%s' % user) + 'sg.install.cache.%s' % user) return cache_dir def parse_args(): diff --git a/scripts/public_fetch_tarballs.py b/scripts/public_fetch_tarballs.py index 455a42549..45eb4c5a8 100755 --- a/scripts/public_fetch_tarballs.py +++ b/scripts/public_fetch_tarballs.py @@ -173,10 +173,10 @@ def _default_installable_cache(): """In general, the installable files do not change much, so find a host/user specific location to cache files.""" user = _getuser() - cache_dir = "/var/tmp/%s/install.cache" % user + cache_dir = "/var/tmp/%s/sg.install.cache" % user if _get_platform() == 'windows': cache_dir = os.path.join(tempfile.gettempdir(), \ - 'install.cache.%s' % user) + 'sg.install.cache.%s' % user) return cache_dir # For status messages (e.g. "Loading..."). May come in handy if