diff options
Diffstat (limited to 'cmd/console/main.go')
-rw-r--r-- | cmd/console/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/console/main.go b/cmd/console/main.go index 9020a12fe..e8dd412ba 100644 --- a/cmd/console/main.go +++ b/cmd/console/main.go @@ -52,7 +52,6 @@ func init() { app.Action = run app.Flags = []cli.Flag{ - utils.IPCDisabledFlag, utils.IPCPathFlag, utils.VerbosityFlag, utils.JSpathFlag, @@ -93,7 +92,7 @@ func main() { func run(ctx *cli.Context) { jspath := ctx.GlobalString(utils.JSpathFlag.Name) - ipcpath := ctx.GlobalString(utils.IPCPathFlag.Name) + ipcpath := utils.IpcSocketPath(ctx) repl := newJSRE(jspath, ipcpath) repl.welcome(ipcpath) |