Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,10 @@ def build_cache(self):
@property
def build_large(self):
return self.root // "bularge"

@property
def experiment_dir(self):
return self.root // "build_cache_experiment_LRM"

@property
def download_cache(self):
Expand Down Expand Up @@ -1186,6 +1190,7 @@ def init(self):
self.download_cache.mkdir()
self.build_cache.mkdir()
self.build_large.mkdir()
self.experiment_dir.mkdir()
self.unpack_base.mkdir()
self.upload_cache.mkdir()
if (v_found is not None): # upgrade
Expand Down Expand Up @@ -1277,6 +1282,7 @@ def validate_strict(self):
for entry in { i.name for i in (self.build_cache,
self.build_large,
self.download_cache,
self.experiment_dir,
self.unpack_base,
self.upload_cache,
self.version_file) }:
Expand Down