diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-24 16:24:38 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-24 16:24:38 +0200 |
commit | 061e83d4b4aa66c2691b3699a3e770b2a58d26df (patch) | |
tree | ab82b815a91054fc498dbd7564cc61322b5fd338 /bridge/github | |
parent | 43bda202fa347e6893671b05376c0e4fcb9196f4 (diff) | |
download | git-bug-061e83d4b4aa66c2691b3699a3e770b2a58d26df.tar.gz |
commands: add "bridge rm"
Diffstat (limited to 'bridge/github')
-rw-r--r-- | bridge/github/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/github/config.go b/bridge/github/config.go index 385630a7..b8531dfe 100644 --- a/bridge/github/config.go +++ b/bridge/github/config.go @@ -214,7 +214,7 @@ func promptURL() (string, string, error) { func splitURL(url string) (string, string, error) { re, err := regexp.Compile(`github\.com\/([^\/]*)\/([^\/]*)`) if err != nil { - return "", "", err + panic(err) } res := re.FindStringSubmatch(url) |