Skip to content

Commit 5c873cd

Browse files
committed
fix: remove duplicate success emoji in validate command output
The success() method automatically adds a checkmark emoji via the theme, so we shouldn't include it in the message text. This caused a duplicate '✅ ✅' to appear in the validate command success message. Output before: ✅ ✅ Configuration file 'x.json' is valid Output after: ✅ Configuration file 'x.json' is valid
1 parent 1c1193d commit 5c873cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/presentation/controllers/validate/handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ impl ValidateCommandController {
161161
) -> Result<(), ValidateSubcommandError> {
162162
self.progress.blank_line()?;
163163
self.progress.complete(&format!(
164-
"Configuration file '{}' is valid\n\n\
164+
"Configuration file '{}' is valid\n\n\
165165
Environment Details:\n\
166166
• Name: {}\n\
167167
• Provider: {}\n\

0 commit comments

Comments
 (0)