Skip to content

Commit

Permalink
Update required tools check (#170)
Browse files Browse the repository at this point in the history
* update required tools check

* format
  • Loading branch information
thomas-bc authored Oct 10, 2023
1 parent 29b6ef7 commit f76cbf7
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/fprime/util/build_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,21 @@ def validate_tools_from_requirements(build: Build):
return

# Now check each required tool for fprime
tools = ["fprime-fpp", "fprime-tools", "fprime-gds"]
tools = [
"fprime-tools",
"fprime-gds",
"fprime-fpp-to-xml",
"fprime-fpp-to-json",
"fprime-fpp-to-cpp",
"fprime-fpp-syntax",
"fprime-fpp-locate-uses",
"fprime-fpp-locate-defs",
"fprime-fpp-from-xml",
"fprime-fpp-format",
"fprime-fpp-filenames",
"fprime-fpp-depend",
"fprime-fpp-check",
]
for tool in tools:
for possible in possibilities:
try:
Expand Down

0 comments on commit f76cbf7

Please sign in to comment.