From 61a83d22763fa7b3ab99e26ee0b99ecd540f0d71 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Fri, 29 Aug 2025 20:37:08 +0200 Subject: [PATCH] Mention streaming in `asciinema auth` message --- src/cmd/auth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/auth.rs b/src/cmd/auth.rs index b60db2a..e8e1f32 100644 --- a/src/cmd/auth.rs +++ b/src/cmd/auth.rs @@ -11,9 +11,9 @@ impl cli::Auth { let server_hostname = server_url.host().unwrap(); let auth_url = api::get_auth_url(&config)?; - println!("Open the following URL in a web browser to authenticate this asciinema CLI with your {server_hostname} user account:\n"); + println!("Open the following URL in a web browser to authenticate this CLI with your {server_hostname} user account:\n"); println!("{auth_url}\n"); - println!("This action will associate all recordings uploaded from this machine (past and future ones) with your account, allowing you to manage them (change the title/theme, delete) at {server_hostname}."); + println!("This will associate all recordings uploaded from this machine with your account (including past uploads), and enable public live streaming via {server_hostname}."); Ok(()) }