Skip to content

Commit

Permalink
ci: fix typo (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
einarsi authored Dec 6, 2023
1 parent 9d5c598 commit 328ae5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/src/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ def getObjectFiles(branch: str):
"src/Subr.cpp",
"src/Calc.cpp",
"src/Expr.cpp",
"src/Evnt.cpp"
"src/Evnt.cpp",
"src/Fdta.cpp"
]
files = []
for path in paths:
try:
files.append(getFile(branch, path))
except:
continue
except Exception as e:
print(e, path)
return files


Expand Down

0 comments on commit 328ae5f

Please sign in to comment.