ソースを参照

Cache directories should be pynsist, not flit

Copy/paste mistake
Thomas Kluyver 10 年 前
コミット
c358d549fb
1 ファイル変更2 行追加2 行削除
  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: