mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
dependencies are vendored into Godeps/_workspace and commit versions are recorded in Godeps.json update datastore to e89f0511 update go.crypto
12 lines
259 B
Makefile
12 lines
259 B
Makefile
all:
|
|
# no-op
|
|
|
|
godep:
|
|
go get github.com/tools/godep
|
|
|
|
# saves/vendors third-party dependencies to Godeps/_workspace
|
|
# -r flag rewrites import paths to use the vendored path
|
|
# ./... performs operation on all packages in tree
|
|
vendor: godep
|
|
godep save -r ./...
|