From faef1604332b0360d6ee6c5584fc23369124dd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tesa=C5=99?= Date: Wed, 9 Oct 2024 23:02:26 +0200 Subject: [PATCH] fix: typo in success message 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 }