diff options
author | Andreas Fuchs | 2020-11-25 19:12:48 -0500 |
---|---|---|
committer | notgne2 | 2020-12-02 10:24:23 -0700 |
commit | 4af6b8114e1edb8d8280e10ab295c1cacef94136 (patch) | |
tree | e403f5ca1f530400dc07956a06b094c3eb65087a /src | |
parent | 29ab0624e3ff236669627f7154071e6c555abd85 (diff) |
Don't copy the activate script (it's part of the closure anyway)
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/push.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/push.rs b/src/utils/push.rs index 2dd408b..237e99a 100644 --- a/src/utils/push.rs +++ b/src/utils/push.rs @@ -144,7 +144,6 @@ pub async fn push_profile( .arg("--to") .arg(format!("ssh://{}@{}", deploy_defs.ssh_user, hostname)) .arg(&deploy_data.profile.profile_settings.path) - .arg(&super::deploy_path_to_activate_path_str(&deploy_defs)?) .env("NIX_SSHOPTS", ssh_opts_str) .status() .await |