aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBas van Kervel <basvankervel@gmail.com>2017-05-03 19:16:20 +0800
committerBas van Kervel <basvankervel@gmail.com>2017-05-03 20:33:08 +0800
commit38b4fc8069cbd152163d0945b5296e3ac0634b5b (patch)
treeb72daf1f2903dbd8fbedc3805141385e90aac894
parent11ab73f6d83d605ef0f2ca7fc8942a9061b9ebf7 (diff)
downloadgo-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.gz
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.bz2
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.lz
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.xz
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.zst
go-tangerine-38b4fc8069cbd152163d0945b5296e3ac0634b5b.zip
cmd/geth: migrate bug command/flags
-rw-r--r--cmd/geth/bugcmd.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/geth/bugcmd.go b/cmd/geth/bugcmd.go
index f21880501..ce9dbe6c0 100644
--- a/cmd/geth/bugcmd.go
+++ b/cmd/geth/bugcmd.go
@@ -29,11 +29,12 @@ import (
"github.com/ethereum/go-ethereum/cmd/internal/browser"
"github.com/ethereum/go-ethereum/params"
+ "github.com/ethereum/go-ethereum/cmd/utils"
cli "gopkg.in/urfave/cli.v1"
)
var bugCommand = cli.Command{
- Action: reportBug,
+ Action: utils.MigrateFlags(reportBug),
Name: "bug",
Usage: "opens a window to report a bug on the geth repo",
ArgsUsage: " ",