aboutsummaryrefslogtreecommitdiffstats
path: root/utils/cmd.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/cmd.go')
-rw-r--r--utils/cmd.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/cmd.go b/utils/cmd.go
index 83f3ec0b6..da3cac444 100644
--- a/utils/cmd.go
+++ b/utils/cmd.go
@@ -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: