aboutsummaryrefslogtreecommitdiff
path: root/src/utils/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/utils/mod.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/utils/mod.rs b/src/utils/mod.rs
index 02ea85b..a960a14 100644
--- a/src/utils/mod.rs
+++ b/src/utils/mod.rs
@@ -203,11 +203,6 @@ pub struct DeployDefs {
#[derive(Error, Debug)]
pub enum DeployDataDefsError {
#[error("Neither `user` nor `sshUser` are set for profile {0} of node {1}")]
- NoProfileUser(String, String),
- #[error("Error reading current executable path: {0}")]
- ExecutablePathNotFound(std::io::Error),
- #[error("Executable was not in the Nix store")]
- NotNixStored,
}
impl<'a> DeployData<'a> {
@@ -246,13 +241,6 @@ impl<'a> DeployData<'a> {
_ => None,
};
- let current_exe =
- std::env::current_exe().map_err(DeployDataDefsError::ExecutablePathNotFound)?;
-
- if !current_exe.starts_with("/nix/store/") {
- return Err(DeployDataDefsError::NotNixStored);
- }
-
Ok(DeployDefs {
ssh_user,
profile_user,