Skip to content

Commit daaf61b

Browse files
committed
Issue #84 - use vendoring
1 parent c58c93f commit daaf61b

File tree

10 files changed

+33
-1
lines changed

10 files changed

+33
-1
lines changed

.gitmodules

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[submodule "vendor/github.com/Sirupsen/logrus"]
2+
path = vendor/github.com/Sirupsen/logrus
3+
url = https://github.com/Sirupsen/logrus
4+
[submodule "vendor/github.com/dickeyxxx/netrc"]
5+
path = vendor/github.com/dickeyxxx/netrc
6+
url = https://github.com/dickeyxxx/netrc
7+
[submodule "vendor/github.com/docker/go-connections"]
8+
path = vendor/github.com/docker/go-connections
9+
url = https://github.com/docker/go-connections
10+
[submodule "vendor/github.com/docker/go-plugins-helpers"]
11+
path = vendor/github.com/docker/go-plugins-helpers
12+
url = https://github.com/docker/go-plugins-helpers
13+
[submodule "vendor/github.com/miekg/dns"]
14+
path = vendor/github.com/miekg/dns
15+
url = https://github.com/miekg/dns
16+
[submodule "vendor/github.com/spf13/cobra"]
17+
path = vendor/github.com/spf13/cobra
18+
url = https://github.com/spf13/cobra
19+
[submodule "vendor/github.com/spf13/pflag"]
20+
path = vendor/github.com/spf13/pflag
21+
url = https://github.com/spf13/pflag
22+
[submodule "vendor/golang.org/x/net"]
23+
path = vendor/golang.org/x/net
24+
url = https://go.googlesource.com/net

netshare/netshare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func start(dt drivers.DriverType, driver volume.Driver) {
228228
if addr == "" {
229229
addr, _ = rootCmd.PersistentFlags().GetString(PortFlag)
230230
}
231-
fmt.Println(h.ServeTCP(dt.String(), addr))
231+
fmt.Println(h.ServeTCP(dt.String(), addr, nil))
232232
} else {
233233
fmt.Println(h.ServeUnix("", dt.String()))
234234
}

vendor/github.com/Sirupsen/logrus

Submodule logrus added at 3ec0642

vendor/github.com/dickeyxxx/netrc

Submodule netrc added at 3acf1b3
Submodule go-connections added at 988efe9
Submodule go-plugins-helpers added at 8a0198e

vendor/github.com/miekg/dns

Submodule dns added at 58f52c5

vendor/github.com/spf13/cobra

Submodule cobra added at 856b96d

vendor/github.com/spf13/pflag

Submodule pflag added at dabebe2

vendor/golang.org/x/net

Submodule net added at c33d378

0 commit comments

Comments
 (0)