We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682abaf commit 005bc69Copy full SHA for 005bc69
src/deploy/build.py
@@ -192,7 +192,7 @@ def __init__(
192
self.force: bool = force
193
self.prefix: Path = prefix
194
self.storepath: Path = prefix / config.paths.store
195
- self.cachepath: Path = Path("tmp").resolve()
+ self.cachepath = Path(os.environ.get("XDG_CACHE_HOME", Path.home() / ".cache"))
196
buildmap = {x.name: x for x in config.builds}
197
198
self.storepath.mkdir(parents=True, exist_ok=True)
0 commit comments