diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-23 14:23:34 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-23 14:23:34 +0100 |
commit | dc21ad089295723ca95bf1b452d2f6f31c51c735 (patch) | |
tree | 396df7da8fc1fbcb8d4edd289c09bfe933c04c68 /bridge/github/config.go | |
parent | b3318335986618388637a9d35d68b39633e4548a (diff) | |
download | git-bug-dc21ad089295723ca95bf1b452d2f6f31c51c735.tar.gz |
use regex.MustCompile instead of dealing with the error
Diffstat (limited to 'bridge/github/config.go')
-rw-r--r-- | bridge/github/config.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bridge/github/config.go b/bridge/github/config.go index 269c6144..b6f69d74 100644 --- a/bridge/github/config.go +++ b/bridge/github/config.go @@ -287,10 +287,7 @@ func promptToken() (*auth.Token, error) { fmt.Println(" - 'repo' : to be able to read private repositories") fmt.Println() - re, err := regexp.Compile(`^[a-zA-Z0-9]{40}$`) - if err != nil { - panic("regexp compile:" + err.Error()) - } + re := regexp.MustCompile(`^[a-zA-Z0-9]{40}$`) var login string |