diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-15 01:32:54 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-15 01:32:54 +0800 |
commit | 353ecbb7d78d9669c42545f152f291f869b39c02 (patch) | |
tree | f3cbb4ad253708b55001d658737578d9713dca52 /ethereal/flags.go | |
parent | 6b296d907b848e2a3dbc78ea5c04c3c3d719d9bd (diff) | |
parent | e53acdc2ac45fa8953afc3392ed81653d6f26326 (diff) | |
download | go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar.gz go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar.bz2 go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar.lz go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar.xz go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.tar.zst go-tangerine-353ecbb7d78d9669c42545f152f291f869b39c02.zip |
Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/ethutil-refactor
Diffstat (limited to 'ethereal/flags.go')
-rw-r--r-- | ethereal/flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/flags.go b/ethereal/flags.go index 2c9b3af5f..d5ca9f336 100644 --- a/ethereal/flags.go +++ b/ethereal/flags.go @@ -52,8 +52,8 @@ func defaultAssetPath() string { assetPath = filepath.Join(exedir, "../Resources") case "linux": assetPath = "/usr/share/ethereal" - case "window": - fallthrough + case "windows": + assetPath = "./assets" default: assetPath = "." } |