Ver Fonte

Cache directories should be pynsist, not flit

Copy/paste mistake
Thomas Kluyver há 10 anos atrás
pai
commit
c358d549fb
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      nsist/util.py

+ 2 - 2
nsist/util.py

@@ -35,12 +35,12 @@ def get_cache_dir(ensure_existence=False):
         p = Path(xdg, 'pynsist')
 
     elif sys.platform == 'darwin':
-        p = Path(os.path.expanduser('~'), 'Library/Caches/flit')
+        p = Path(os.path.expanduser('~'), 'Library/Caches/pynsist')
 
     else:
         # Windows (hopefully)
         local = os.environ.get('LOCALAPPDATA', None) or (os.path.expanduser('~\\AppData\\Local'))
-        p = Path(local, 'flit')
+        p = Path(local, 'pynsist')
 
     if ensure_existence:
         try: