diff options
Diffstat (limited to 'src/activate.rs')
-rw-r--r-- | src/activate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/activate.rs b/src/activate.rs index 8c1cfe4..3ad7e60 100644 --- a/src/activate.rs +++ b/src/activate.rs @@ -152,7 +152,7 @@ pub async fn activation_confirmation( confirm_timeout: u16, closure: String, ) -> Result<(), Box<dyn std::error::Error>> { - let lock_hash = &closure[11 /* /nix/store/ */ ..]; + let lock_hash = &closure["/nix/store/".len()..]; let lock_path = format!("{}/activating-{}", temp_path, lock_hash); if let Some(parent) = Path::new(&lock_path).parent() { |