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 14dacd7 commit a1b21b9Copy full SHA for a1b21b9
src/deploy/build.py
@@ -194,7 +194,11 @@ def __init__(
194
self.force: bool = force
195
self.prefix: Path = prefix
196
self.storepath: Path = prefix / config.paths.store
197
- self.cachepath = Path(os.environ.get("XDG_CACHE_HOME", Path.home() / ".cache"))
+ self.cachepath = (
198
+ Path(os.environ.get("XDG_CACHE_HOME", Path.home() / ".cache"))
199
+ / "cirrus-deploy"
200
+ )
201
+ self.cachepath.mkdir(exist_ok=True, parents=True)
202
buildmap = {x.name: x for x in config.builds}
203
204
self.storepath.mkdir(parents=True, exist_ok=True)
0 commit comments