diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-27 18:50:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-27 18:50:38 +0800 |
commit | b095bd32371f02d204a4d0fbde75dc58baa7430d (patch) | |
tree | 2711b376e03855a096fe8d14f08c83c655192f1b /cmd | |
parent | 1d3f43f060e9ebb312fc3b17fc0fe43c8f95cd82 (diff) | |
download | go-tangerine-b095bd32371f02d204a4d0fbde75dc58baa7430d.tar.gz go-tangerine-b095bd32371f02d204a4d0fbde75dc58baa7430d.tar.zst go-tangerine-b095bd32371f02d204a4d0fbde75dc58baa7430d.zip |
events should be set prior to calling mainloop
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/flags.go b/cmd/mist/flags.go index 5283c332b..3aa2e21c8 100644 --- a/cmd/mist/flags.go +++ b/cmd/mist/flags.go @@ -67,7 +67,7 @@ func defaultAssetPath() string { // assume a debug build and use the source directory as // asset directory. pwd, _ := os.Getwd() - if pwd == path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "mist") { + if pwd == path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist") { assetPath = path.Join(pwd, "assets") } else { switch runtime.GOOS { |