From cd751f1e95c9ac5e73cf5e6b0423d05ec9adcc7f Mon Sep 17 00:00:00 2001 From: notgne2 Date: Sat, 14 Nov 2020 14:09:09 -0700 Subject: Pass extra build args to build command --- src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main.rs') 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?; -- cgit v1.2.3