From be6fae3e456aaf276628f34bdba5cdf1ce3a55d9 Mon Sep 17 00:00:00 2001 From: viktorbarzin Date: Thu, 25 Mar 2021 22:51:54 +0000 Subject: [PATCH] update base64 regex for pub key --- cli/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/main.go b/cli/main.go index 593f16bf..23205e74 100644 --- a/cli/main.go +++ b/cli/main.go @@ -3,6 +3,7 @@ package main import ( "flag" "fmt" + "os" "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing/object" @@ -24,6 +25,7 @@ func main() { err := run() if err != nil { glog.Errorf("run failed: %s", err.Error()) + os.Exit(255) } }