diff options
author | Bas van Kervel <basvankervel@gmail.com> | 2017-05-03 19:16:20 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2017-05-03 20:33:08 +0800 |
commit | 38b4fc8069cbd152163d0945b5296e3ac0634b5b (patch) | |
tree | b72daf1f2903dbd8fbedc3805141385e90aac894 | |
parent | 11ab73f6d83d605ef0f2ca7fc8942a9061b9ebf7 (diff) | |
download | dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.gz dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.bz2 dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.lz dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.xz dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.tar.zst dexon-38b4fc8069cbd152163d0945b5296e3ac0634b5b.zip |
cmd/geth: migrate bug command/flags
-rw-r--r-- | cmd/geth/bugcmd.go | 3 |
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: " ", |