From b3fcba57be1b50876183734c5773e2bc1e71beb5 Mon Sep 17 00:00:00 2001 From: pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:26:39 -0500 Subject: [PATCH] chore: fix typo Removed init.go changes per https://github.com/MightyMoud/sidekick/pull/15#pullrequestreview-2321977777 --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index d05484c..9d52833 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -71,7 +71,7 @@ func GetSshClient(server string, sshUser string) (*ssh.Client, error) { // connect to local ssh-agent to grab all keys sshAgentSock := os.Getenv("SSH_AUTH_SOCK") if sshAgentSock == "" { - log.Fatal("No SSH SOCK AVAIBALEB") + log.Fatal("No SSH SOCK AVAILABLE") return nil, errors.New("Error happened connecting to ssh-agent") } // make a connection to SSH agent over unix protocl