Skip to content

Commit 47b2956

Browse files
committed
Set the state.toml filename based upon --select-output
1 parent 992d2df commit 47b2956

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build_docs.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,10 @@ def should_rebuild(self):
929929
return False
930930

931931
def load_state(self) -> dict:
932-
state_file = self.build_root / "state.toml"
932+
if self.select_output is None:
933+
state_file = self.build_root / "state.toml"
934+
else:
935+
state_file = self.build_root / f"state-{self.select_output}.toml"
933936
try:
934937
return tomlkit.loads(state_file.read_text(encoding="UTF-8"))[
935938
f"/{self.language.tag}/{self.version.name}/"
@@ -942,7 +945,10 @@ def save_state(self, build_start: dt, build_duration: float, trigger: str):
942945
943946
Using this we can deduce if a rebuild is needed or not.
944947
"""
945-
state_file = self.build_root / "state.toml"
948+
if self.select_output is None:
949+
state_file = self.build_root / "state.toml"
950+
else:
951+
state_file = self.build_root / f"state-{self.select_output}.toml"
946952
try:
947953
states = tomlkit.parse(state_file.read_text(encoding="UTF-8"))
948954
except FileNotFoundError:

0 commit comments

Comments
 (0)