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.
This commit is contained in:
Lukáš Tesař 2024-10-09 23:02:26 +02:00 committed by GitHub
parent ceb4e12d92
commit faef160433
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}