We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286ba5b commit 68eab8eCopy full SHA for 68eab8e
1 file changed
encoderfile/src/builder/cli/build.rs
@@ -68,7 +68,11 @@ impl BuildArgs {
68
}
69
70
if let Some(base_binary_path) = &self.base_binary_path {
71
- config.encoderfile.base_binary_path = Some(base_binary_path.to_path_buf())
+ config.encoderfile.base_binary_path = Some(base_binary_path.to_path_buf());
72
+ }
73
+
74
+ if let Some(platform) = &self.platform {
75
+ config.encoderfile.target = Some(platform.clone());
76
77
78
super::super::builder::EncoderfileBuilder::new(config)
0 commit comments