From 5059654ec4465977590f9c8310bf96187e5dfdf8 Mon Sep 17 00:00:00 2001
From: Matt Bell <mappum@gmail.com>
Date: Thu, 11 Sep 2014 13:05:59 -0700
Subject: [PATCH] config: Broke out config directory into its own const

---
 config/config.go | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/config/config.go b/config/config.go
index b80ff1a2c..76088da1f 100644
--- a/config/config.go
+++ b/config/config.go
@@ -34,12 +34,13 @@ type Config struct {
 	Peers     []*SavedPeer
 }
 
-var DefaultConfigFilePath = "~/.go-ipfs/config"
-var DefaultConfigFile = `{
+const DefaultPathRoot = "~/.go-ipfs"
+const DefaultConfigFilePath = DefaultPathRoot + "/config"
+const DefaultConfigFile = `{
   "identity": {},
   "datastore": {
     "type": "leveldb",
-    "path": "~/.go-ipfs/datastore"
+    "path": "` + DefaultPathRoot + `/datastore"
   }
 }
 `
-- 
GitLab