You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ all:
4
4
@echo "See Makefile contents for details."
5
5
6
6
bootstrap:
7
-
cd ./testutil/chain &&yarn install
7
+
cd ./testutil/chain &&pnpm install
8
8
9
9
build:
10
10
go build ./...
@@ -15,19 +15,19 @@ go-test:
15
15
go clean -testcache && go test$(TEST_FLAGS) -run=$(TEST) ./...
16
16
17
17
test-concurrently:
18
-
cd ./testutil/chain &&yarntest
18
+
cd ./testutil/chain &&pnpmtest
19
19
20
20
start-testchain:
21
-
cd ./testutil/chain &&yarn start:geth
21
+
cd ./testutil/chain &&pnpm start:geth
22
22
23
23
start-testchain-verbose:
24
-
cd ./testutil/chain &&yarn start:geth:verbose
24
+
cd ./testutil/chain &&pnpm start:geth:verbose
25
25
26
26
start-testchain-anvil:
27
-
cd ./testutil/chain &&yarn start:anvil
27
+
cd ./testutil/chain &&pnpm start:anvil
28
28
29
29
start-testchain-anvil-verbose:
30
-
cd ./testutil/chain &&yarn start:anvil:verbose
30
+
cd ./testutil/chain &&pnpm start:anvil:verbose
31
31
32
32
clean:
33
33
@go clean -testcache
@@ -37,4 +37,4 @@ check-testchain-running:
37
37
|| { echo"*****";echo"Oops! testchain is not running. Please run 'make start-testchain' in another terminal or use 'test-concurrently'.";echo"*****";exit 1; }
0 commit comments