Skip to content

Commit

Permalink
lestarch: search deployments from cwd. Fixing issue #45
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Apr 28, 2022
1 parent f4e515a commit 4385129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime/util/build_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def utility_entry(args):
deployment = (
Path(parsed.deploy)
if parsed.deploy is not None
else Build.find_nearest_deployment(cwd)
else Build.find_nearest_deployment(Path.cwd()) # Deployments look in CWD
)
build = Build(build_type, deployment, verbose=parsed.verbose)

Expand Down

0 comments on commit 4385129

Please sign in to comment.