Skip to content

Commit d3bba37

Browse files
Added in_progress for DEFAULT_OUTPUT_DIR_IN_PROGRESS
1 parent 717a816 commit d3bba37

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

scripts/spec_xml/generate_spec_xml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Replace hardcoded paths with dynamic paths using paths.py functions
3333
DEFAULT_CHIP_ROOT = get_chip_root()
3434
DEFAULT_OUTPUT_DIR_1_3 = get_data_model_path(Branch.V1_3)
35-
DEFAULT_OUTPUT_DIR_IN_PROGRESS = get_data_model_path(Branch.MASTER)
35+
DEFAULT_OUTPUT_DIR_IN_PROGRESS = get_data_model_path(Branch.IN_PROGRESS)
3636
DEFAULT_OUTPUT_DIR_TOT = get_data_model_path(Branch.MASTER)
3737
DEFAULT_DOCUMENTATION_FILE = get_documentation_file_path()
3838

scripts/spec_xml/paths.py

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class Branch(Enum):
2424
MASTER = "master"
2525
V1_3 = "v1_3"
2626
V1_4 = "v1_4"
27+
IN_PROGRESS = "in_progress"
2728

2829

2930
def get_chip_root():

0 commit comments

Comments
 (0)