Pārlūkot izejas kodu

Cache directories should be pynsist, not flit

Copy/paste mistake
Thomas Kluyver 10 gadi atpakaļ
vecāks
revīzija
c358d549fb
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  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: