From a99c9628564006019794381d91f02d3cce160fd8 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Tue, 18 May 2021 13:27:44 +0200 Subject: [PATCH] fix: formatting --- update.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.go b/update.go index adea811..baeb8c8 100644 --- a/update.go +++ b/update.go @@ -100,8 +100,8 @@ func fetchFile(file string) ([]byte, error) { func publickey() []byte { pub, err := base64.StdEncoding.DecodeString(publicKeyString) if err != nil { // Should only happen when distributor ships an invalid public key - log.Fatalf("Error while reading public key: %s\nContact the distribution '%s' about this error.\n", err, distribution) - os.Exit(1) + log.Fatalf("Error while reading public key: %s\nContact the distribution '%s' about this error.\n", err, distribution) + os.Exit(1) } return pub }