Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4a864a7

Browse files
committed
code.google.com is shutting down so update the dep
Signed-off-by: Jessica Frazelle <[email protected]>
1 parent d9065fc commit 4a864a7

4 files changed

Lines changed: 2 additions & 501 deletions

File tree

hack/vendor.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ clone git github.com/microsoft/hcsshim 7f646aa6b26bcf90caee91e93cde4a80d0d8a83e
1818
clone git github.com/mistifyio/go-zfs v2.1.1
1919
clone git github.com/tchap/go-patricia v2.1.0
2020
clone git golang.org/x/net 3cffabab72adf04f8e3b01c5baf775361837b5fe https://github.com/golang/net.git
21-
clone hg code.google.com/p/gosqlite 74691fb6f837
2221

2322
#get libnetwork packages
2423
clone git github.com/docker/libnetwork 22dc04d06067b40a9e7ef575aee6d1bb69d4dcc3

pkg/graphdb/conn_sqlite3_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
package graphdb
44

55
import (
6-
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
6+
_ "github.com/mattn/go-sqlite3" // registers sqlite
77
)

pkg/graphdb/graphdb_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"testing"
1010

11-
_ "code.google.com/p/gosqlite/sqlite3"
11+
_ "github.com/mattn/go-sqlite3"
1212
)
1313

1414
func newTestDb(t *testing.T) (*Database, string) {

0 commit comments

Comments
 (0)