aboutsummaryrefslogtreecommitdiff
path: root/src/activate.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/activate.rs')
-rw-r--r--src/activate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/activate.rs b/src/activate.rs
index f9c7e22..193f617 100644
--- a/src/activate.rs
+++ b/src/activate.rs
@@ -204,7 +204,7 @@ pub async fn activation_confirmation(
closure: String,
) -> Result<(), ActivationConfirmationError> {
let lock_hash = &closure["/nix/store/".len()..];
- let lock_path = format!("{}/activating-{}", temp_path, lock_hash);
+ let lock_path = format!("{}/deploy-rs-canary-{}", temp_path, lock_hash);
if let Some(parent) = Path::new(&lock_path).parent() {
fs::create_dir_all(parent)