Skip to content

Commit

Permalink
Fixed broken CI script
Browse files Browse the repository at this point in the history
Signed-off-by: simonmicro <[email protected]>
  • Loading branch information
simonmicro committed Aug 11, 2024
1 parent 77f24a1 commit da9d1e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/getWorkflowMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get(info: GettableInfo):
returnArray.add(line.split('=')[1].strip())
break
elif info == GettableInfo.FLAGS:
with open('docs/firmware/osw_os.md') as f:
with open('docs/firmware/flags.md') as f:
for line in f:
# this parses a row with the format: "| `flag` | description | requirements |"
match = re.match(r'^\| `(.+)`\s+\| .+ \| (.+) \|$', line)
Expand Down Expand Up @@ -76,4 +76,4 @@ def get(info: GettableInfo):
ap.add_argument('info', type=GettableInfo)
args = ap.parse_args()

print(json.dumps(list(get(args.info))))
print(json.dumps(list(get(args.info))))

0 comments on commit da9d1e6

Please sign in to comment.