Skip to content

Commit

Permalink
Run FppUtility in cwd=context (#180)
Browse files Browse the repository at this point in the history
* Run FppUtility in cwd=context

* Remove note
  • Loading branch information
thomas-bc committed Nov 28, 2023
1 parent a709139 commit 12fcefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime/fpp/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ def execute(
app_args = [self.utility] + user_args + input_args
if builder.cmake.verbose:
print(f"[FPP] '{' '.join(app_args)}'")
return subprocess.run(app_args, capture_output=False).returncode
return subprocess.run(app_args, cwd=context, capture_output=False).returncode

0 comments on commit 12fcefe

Please sign in to comment.