Skip to content

Commit

Permalink
Simplify cargo paths
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Della Vedova <[email protected]>
  • Loading branch information
luca-della-vedova committed Jul 10, 2024
1 parent 1dda2c4 commit 418612b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions colcon_cargo/task/cargo/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ def _build_cmd(self, cargo_args):
CARGO_EXECUTABLE,
'build',
'--quiet',
'--manifest-path', args.path + '/Cargo.toml',
'--target-dir', args.build_base,
'--all-targets',
] + cargo_args
Expand All @@ -126,6 +125,6 @@ def _install_cmd(self, cargo_args):
'--force',
'--quiet',
'--locked',
'--path', args.path,
'--path', '.',
'--root', args.install_base,
] + cargo_args

0 comments on commit 418612b

Please sign in to comment.