mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-20 05:41:35 +00:00
13 lines
No EOL
249 B
Bash
Executable file
13 lines
No EOL
249 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 |