Skip to content

Commit

Permalink
fix(pipeline): convert buffer types
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Jul 3, 2024
1 parent b768d2a commit 8b5c051
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pipeline/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ impl CommandBuilder {
.meta
.target_directory
.join(self.target.clone())
.join(profile);
.join(profile)
.into();

let artifacts = self
.meta
Expand Down Expand Up @@ -279,7 +280,8 @@ impl CommandBuilder {
.target_directory
.join(self.target.clone())
.join(profile)
.join("deps");
.join("deps")
.into();

println!("tests {bins:?}");

Expand Down

0 comments on commit 8b5c051

Please sign in to comment.