diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-12 15:32:37 +0800 |
---|---|---|
committer | Bas van Kervel <bas@ethdev.com> | 2015-06-12 15:32:37 +0800 |
commit | 359e6414e50df415caa1d4411224c6d48b6cb798 (patch) | |
tree | 2bbe96226f778e0b5d06dd32408bf6646fcf829a /cmd/console/main.go | |
parent | 22080e1fdd8eafd6201bb5a06ac19859bcc6b432 (diff) | |
download | go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar.gz go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar.bz2 go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar.lz go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar.xz go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.tar.zst go-tangerine-359e6414e50df415caa1d4411224c6d48b6cb798.zip |
fixed windows ipc path issue
Diffstat (limited to 'cmd/console/main.go')
-rw-r--r-- | cmd/console/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/console/main.go b/cmd/console/main.go index 9020a12fe..365dbec56 100644 --- a/cmd/console/main.go +++ b/cmd/console/main.go @@ -93,7 +93,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) |