mirror of
https://github.com/status-im/remix-viper.git
synced 2026-08-27 12:21:07 +00:00
14 lines
190 B
Bash
Executable File
14 lines
190 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
node findClient.js $1
|
|
RUNCLIENT=$?
|
|
if [ $RUNCLIENT -eq '20' ]
|
|
then
|
|
npm run start_eth
|
|
fi
|
|
|
|
if [ $RUNCLIENT -eq '21' ]
|
|
then
|
|
echo $?
|
|
npm run start_geth
|
|
fi |