Skip to content

Commit

Permalink
split prebuild commands to avoid using shell
Browse files Browse the repository at this point in the history
  • Loading branch information
mquinnfd committed Jul 10, 2024
1 parent f7a142e commit 38b7571
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pre_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ def build() -> None:
print("Skipping front end build...")
return
print("Building front end...")
subprocess.run(["make", "frontend_build"])
subprocess.run(["yarn", "webui:install"])
subprocess.run(["yarn", "webui:build"])


if __name__ == "__main__":
Expand Down

0 comments on commit 38b7571

Please sign in to comment.