From 9762cbf101689f32b15863271ee49ab8214bd59c Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Fri, 18 Nov 2016 22:45:29 -1000 Subject: [PATCH] Modify DefaultDataDir --- node/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/defaults.go b/node/defaults.go index bfe257c8e9..ccb0f2b639 100644 --- a/node/defaults.go +++ b/node/defaults.go @@ -38,11 +38,11 @@ func DefaultDataDir() string { home := homeDir() if home != "" { if runtime.GOOS == "darwin" { - return filepath.Join(home, "Library", "Ethereum") + return filepath.Join(home, "Library", "Ubiq") } else if runtime.GOOS == "windows" { - return filepath.Join(home, "AppData", "Roaming", "Ethereum") + return filepath.Join(home, "AppData", "Roaming", "Ubiq") } else { - return filepath.Join(home, ".ethereum") + return filepath.Join(home, ".ubiq") } } // As we cannot guess a stable location, return empty and handle later