Skip to content

Commit

Permalink
Fix build-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
valadaptive committed Nov 5, 2023
1 parent c59d52e commit e765ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/openfx-plugin/src/bin/build-plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub fn main() -> std::io::Result<()> {
CURRENT_TARGET
));

let mut cargo_args: Vec<_> = vec![String::from("build")];
let mut cargo_args: Vec<_> = vec![String::from("build"), String::from("--package=openfx-plugin"), String::from("--lib")];
cargo_args.extend(args().skip(1));
Command::new("cargo").args(&cargo_args).status()?;

Expand Down

0 comments on commit e765ab5

Please sign in to comment.