We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36166c commit f8d2e6cCopy full SHA for f8d2e6c
Makefile
@@ -1,17 +1,14 @@
1
GO111MODULE = on
2
3
-check:
4
- @echo "verifying that we have no external dependencies"
5
- @test "$$(go list -m all)" = "github.com/ipfs/fs-repo-migrations"
6
-
7
install:
8
- go install
+ go install -mod=vendor
9
@echo "fs-repo-migrations now installed, type 'fs-repo-migrations' to run"
10
11
test: test_go sharness
12
13
test_go:
14
- go test ./ipfs-5-to-6/... ./ipfs-7-to-8/... # go test ./... fails see #66
+ go build -mod=vendor
+ go test -mod=vendor ./...
15
16
sharness:
17
make -C sharness
0 commit comments