mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
11 lines
131 B
Bash
Executable File
11 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
|
|
COMMIT_SHA="$1"
|
|
|
|
sed "s/\$COMMIT_SHA/$COMMIT_SHA/" go.mod.template > go.mod
|
|
|
|
rm -f go.sum
|
|
go mod tidy
|
|
|
|
go run main.go
|