diff options
Diffstat (limited to 'Mist/flags.go')
-rw-r--r-- | Mist/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mist/flags.go b/Mist/flags.go index 388280b8c..d2e7d3fb0 100644 --- a/Mist/flags.go +++ b/Mist/flags.go @@ -44,7 +44,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", "mist") { assetPath = path.Join(pwd, "assets") } else { switch runtime.GOOS { |