diff options
Diffstat (limited to '')
-rw-r--r-- | src/utils/deploy.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/deploy.rs b/src/utils/deploy.rs index 59217df..8ed7d8c 100644 --- a/src/utils/deploy.rs +++ b/src/utils/deploy.rs @@ -140,7 +140,7 @@ pub async fn deploy_profile( ssh_confirm_command = ssh_confirm_command.arg(ssh_opt); } - let lock_hash = &deploy_data.profile.profile_settings.path[11 /* /nix/store/ */ ..]; + let lock_hash = &deploy_data.profile.profile_settings.path["/nix/store/".len()..]; let lock_path = format!("{}/activating-{}", temp_path, lock_hash); let mut confirm_command = format!("rm {}", lock_path); |