diff options
author | notgne2 | 2020-11-14 14:09:09 -0700 |
---|---|---|
committer | Christian Höppner | 2020-11-14 21:11:00 +0000 |
commit | cd751f1e95c9ac5e73cf5e6b0423d05ec9adcc7f (patch) | |
tree | ed33c661a7abcbaa25c26a800bef3027e3f955ab /src/main.rs | |
parent | 47978fcfc9362f659c1406fa60f1de7d21d1e50e (diff) |
Pass extra build args to build command
Diffstat (limited to '')
-rw-r--r-- | src/main.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index cb297ad..7d7fcf9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,6 +95,7 @@ async fn push_all_profiles( cmd_overrides: &utils::CmdOverrides, keep_result: bool, result_path: Option<&str>, + extra_build_args: &[String], ) -> Result<(), PushAllProfilesError> { info!("Pushing all profiles for `{}`", node_name); @@ -145,6 +146,7 @@ async fn push_all_profiles( &deploy_defs, keep_result, result_path, + extra_build_args, ) .await .map_err(|e| PushAllProfilesError::PushProfileError(profile_name.to_owned(), e))?; @@ -377,6 +379,7 @@ async fn run_deploy( cmd_overrides: utils::CmdOverrides, keep_result: bool, result_path: Option<&str>, + extra_build_args: &[String], ) -> Result<(), RunDeployError> { match (deploy_flake.node, deploy_flake.profile) { (Some(node_name), Some(profile_name)) => { @@ -408,6 +411,7 @@ async fn run_deploy( &deploy_defs, keep_result, result_path, + extra_build_args, ) .await?; @@ -429,6 +433,7 @@ async fn run_deploy( &cmd_overrides, keep_result, result_path, + extra_build_args, ) .await?; @@ -448,6 +453,7 @@ async fn run_deploy( &cmd_overrides, keep_result, result_path, + extra_build_args, ) .await?; } @@ -531,6 +537,7 @@ async fn run() -> Result<(), RunError> { cmd_overrides, opts.keep_result, result_path, + &opts.extra_build_args, ) .await?; |