Rename and changed peer window

This commit is contained in:
obscuren
2014-09-17 15:58:44 +02:00
parent e4cc365e89
commit 01863ebff0
7 changed files with 56 additions and 17 deletions

View File

@ -189,7 +189,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", "ethereal") {
if pwd == path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "Mist") {
assetPath = path.Join(pwd, "assets")
} else {
switch runtime.GOOS {
@ -198,7 +198,7 @@ func DefaultAssetPath() string {
exedir, _ := osext.ExecutableFolder()
assetPath = filepath.Join(exedir, "../Resources")
case "linux":
assetPath = "/usr/share/ethereal"
assetPath = "/usr/share/mist"
case "windows":
assetPath = "./assets"
default: