We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfaac8b commit 273caa0Copy full SHA for 273caa0
MakefileEc2.mk
@@ -12,7 +12,12 @@ build-bk-prod-morph-prod-mainnet-to-morph-geth:
12
tar -czvf morph-geth.tar.gz dist
13
aws s3 cp morph-geth.tar.gz s3://morph-0582-morph-technical-department-mainnet-data/morph-setup/morph-geth.tar.gz
14
15
-start-morph-geth:
16
- geth --datadir="/data/morph-geth-db"
+build-bk-prod-morph-prod-mainnet-to-morph-nccc-geth:
+ if [ ! -d dist ]; then mkdir -p dist; fi
17
+ $(GORUN) build/ci.go install ./cmd/geth
18
+ @echo "Done building."
19
+ cp build/bin/geth dist/
20
+ tar -czvf morph-nccc-geth.tar.gz dist
21
+ aws s3 cp morph-nccc-geth.tar.gz s3://morph-0582-morph-technical-department-mainnet-data/morph-setup/morph-nccc-geth.tar.gz
22
23
0 commit comments