From dc927a6123c7070b4e91b24124d5a5be76c954a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tesa=C5=99?= Date: Sun, 13 Oct 2024 03:00:20 +0200 Subject: [PATCH] fix: typo in success message (#283) My OCD just kicks in :)) This has bothered me for a long time. Will also update README in https://github.com/appleboy/ssh-action to reflect this change. --- plugin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.go b/plugin.go index 9844eeb..c0e1fec 100644 --- a/plugin.go +++ b/plugin.go @@ -230,9 +230,9 @@ func (p Plugin) Exec() error { } } - fmt.Println("==============================================") - fmt.Println("✅ Successfully executed commands to all host.") - fmt.Println("==============================================") + fmt.Println("===============================================") + fmt.Println("✅ Successfully executed commands to all hosts.") + fmt.Println("===============================================") return nil }