go-ipfs-config: Setup gx
Łukasz Magiera committed
Jul 23, 2018 at 16:12 UTC
d67080f478b0dc7671addd0b52cda27ee6f83421
3 files changed
+3
-3
config/config.go
+1
-1
@@ -9,7 +9,7 @@ import (
9
"path/filepath"
10
"strings"
11
12
- "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
12
+ "gx/ipfs/QmdcULN1WCzgoQmcCaUAmEhwcxHYsDrbZ2LvRJKCL8dMrK/go-homedir"
13
)
14
15
// Config is used to load ipfs config files.
config/serialize/serialize.go
+1
-1
@@ -8,7 +8,7 @@ import (
8
"os"
9
"path/filepath"
10
11
- "github.com/ipfs/go-ipfs/repo/config"
11
+ "github.com/ipfs/go-ipfs-config"
12
13
"gx/ipfs/QmPdKqUcHGFdeSpvjVoaTRPPstGif9GBZb5Q56RVw9o69A/go-ipfs-util"
14
"gx/ipfs/QmdYwCmx8pZRkzdcd8MhmLJqYVoVTC1aGsy5Q4reMGLNLg/atomicfile"
config/serialize/serialize_test.go
+1
-1
@@ -5,7 +5,7 @@ import (
5
"runtime"
6
"testing"
7
8
- config "github.com/ipfs/go-ipfs/repo/config"
8
+ config "github.com/ipfs/go-ipfs-config"
9
)
10
11
func TestConfig(t *testing.T) {