@@ -232,7 +232,7 @@ pub async fn activation_confirmation(
232
232
confirm_timeout : u16 ,
233
233
closure : String ,
234
234
) -> Result < ( ) , ActivationConfirmationError > {
235
- let lock_path = deploy :: make_lock_path ( & temp_path, & closure) ;
235
+ let lock_path = yeet :: make_lock_path ( & temp_path, & closure) ;
236
236
237
237
debug ! ( "Ensuring parent directory exists for canary file" ) ;
238
238
@@ -295,7 +295,7 @@ pub enum WaitError {
295
295
Waiting ( #[ from] DangerZoneError ) ,
296
296
}
297
297
pub async fn wait ( temp_path : String , closure : String ) -> Result < ( ) , WaitError > {
298
- let lock_path = deploy :: make_lock_path ( & temp_path, & closure) ;
298
+ let lock_path = yeet :: make_lock_path ( & temp_path, & closure) ;
299
299
300
300
let ( created, done) = mpsc:: channel ( 1 ) ;
301
301
@@ -460,13 +460,13 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
460
460
461
461
let opts: Opts = Opts :: parse ( ) ;
462
462
463
- deploy :: init_logger (
463
+ yeet :: init_logger (
464
464
opts. debug_logs ,
465
465
opts. log_dir . as_deref ( ) ,
466
466
& match opts. subcmd {
467
- SubCommand :: Activate ( _) => deploy :: LoggerType :: Activate ,
468
- SubCommand :: Wait ( _) => deploy :: LoggerType :: Wait ,
469
- SubCommand :: Revoke ( _) => deploy :: LoggerType :: Revoke ,
467
+ SubCommand :: Activate ( _) => yeet :: LoggerType :: Activate ,
468
+ SubCommand :: Wait ( _) => yeet :: LoggerType :: Wait ,
469
+ SubCommand :: Revoke ( _) => yeet :: LoggerType :: Revoke ,
470
470
} ,
471
471
) ?;
472
472
0 commit comments