Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

code.google.com is shutting down so update the dep #16054

Merged
merged 1 commit into from Sep 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion hack/vendor.sh
Expand Up @@ -18,7 +18,6 @@ clone git github.com/microsoft/hcsshim 7f646aa6b26bcf90caee91e93cde4a80d0d8a83e
clone git github.com/mistifyio/go-zfs v2.1.1
clone git github.com/tchap/go-patricia v2.1.0
clone git golang.org/x/net 3cffabab72adf04f8e3b01c5baf775361837b5fe https://github.com/golang/net.git
clone hg code.google.com/p/gosqlite 74691fb6f837

#get libnetwork packages
clone git github.com/docker/libnetwork 22dc04d06067b40a9e7ef575aee6d1bb69d4dcc3
Expand Down
2 changes: 1 addition & 1 deletion pkg/graphdb/conn_sqlite3_unix.go
Expand Up @@ -3,5 +3,5 @@
package graphdb

import (
_ "code.google.com/p/gosqlite/sqlite3" // registers sqlite
_ "github.com/mattn/go-sqlite3" // registers sqlite
)
2 changes: 1 addition & 1 deletion pkg/graphdb/graphdb_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"testing"

_ "code.google.com/p/gosqlite/sqlite3"
_ "github.com/mattn/go-sqlite3"
)

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