mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
* build universe docker image * build universe docker image * build universe docker image --------- Co-authored-by: Liam Lai <liam.lai@datameshgroup.com.au>
13 lines
No EOL
250 B
Bash
Executable file
13 lines
No EOL
250 B
Bash
Executable file
#!/bin/bash
|
|
if test -z "$NETWORK"
|
|
then
|
|
echo "NETWORK env Must be set, mainnet/testnet/devnet"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Select to run $NETWORK..."
|
|
ln -s /usr/bin/XDC-$NETWORK /usr/bin/XDC
|
|
cp /work/$NETWORK/* /work
|
|
|
|
echo "Start Node..."
|
|
/work/start.sh |