update base64 regex for pub key

This commit is contained in:
viktorbarzin 2021-03-25 22:51:54 +00:00
parent c4465b9425
commit b7e422f5f8

View file

@ -3,6 +3,7 @@ package main
import ( import (
"flag" "flag"
"fmt" "fmt"
"os"
"github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object" "github.com/go-git/go-git/v5/plumbing/object"
@ -24,6 +25,7 @@ func main() {
err := run() err := run()
if err != nil { if err != nil {
glog.Errorf("run failed: %s", err.Error()) glog.Errorf("run failed: %s", err.Error())
os.Exit(255)
} }
} }