We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 717a816 commit d3bba37Copy full SHA for d3bba37
scripts/spec_xml/generate_spec_xml.py
@@ -32,7 +32,7 @@
32
# Replace hardcoded paths with dynamic paths using paths.py functions
33
DEFAULT_CHIP_ROOT = get_chip_root()
34
DEFAULT_OUTPUT_DIR_1_3 = get_data_model_path(Branch.V1_3)
35
-DEFAULT_OUTPUT_DIR_IN_PROGRESS = get_data_model_path(Branch.MASTER)
+DEFAULT_OUTPUT_DIR_IN_PROGRESS = get_data_model_path(Branch.IN_PROGRESS)
36
DEFAULT_OUTPUT_DIR_TOT = get_data_model_path(Branch.MASTER)
37
DEFAULT_DOCUMENTATION_FILE = get_documentation_file_path()
38
scripts/spec_xml/paths.py
@@ -24,6 +24,7 @@ class Branch(Enum):
24
MASTER = "master"
25
V1_3 = "v1_3"
26
V1_4 = "v1_4"
27
+ IN_PROGRESS = "in_progress"
28
29
30
def get_chip_root():
0 commit comments