From 0d73e4a502bf2e8678815f5d0ee1224c45f328fe Mon Sep 17 00:00:00 2001 From: MalteHerrmann Date: Wed, 6 Nov 2024 23:50:32 +0100 Subject: [PATCH] adjust input prompt --- src/inputs.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/inputs.rs b/src/inputs.rs index 09e6b4d..64e0b69 100644 --- a/src/inputs.rs +++ b/src/inputs.rs @@ -40,7 +40,11 @@ pub fn get_description(default_value: &str) -> Result { pub fn get_permission_to_push(branch: &str) -> Result { match Select::new( - format!("Branch {} not found on remote. Push the branch?", branch).as_str(), + format!( + "Branch {} not found on remote 'origin'. Push the branch?", + branch + ) + .as_str(), vec!["yes", "no"], ) .prompt()?