mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
30 lines
659 B
Bash
Executable File
30 lines
659 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
ganache_cli="$(yarn bin)/ganache"
|
|
seed_phrase="${GANACHE_SEED_PHRASE:-phrase upgrade clock rough situate wedding elder clever doctor stamp excess tent}"
|
|
|
|
_term () {
|
|
printf '%s\n' "Received SIGTERM, sending SIGKILL to Ganache"
|
|
kill -KILL "$child" 2>/dev/null
|
|
exit 42
|
|
}
|
|
|
|
_int () {
|
|
printf '%s\n' "Received SIGINT, sending SIGKILL to Ganache"
|
|
kill -KILL "$child" 2>/dev/null
|
|
exit 42
|
|
}
|
|
|
|
trap _term SIGTERM
|
|
trap _int SIGINT
|
|
|
|
# shellcheck disable=SC2086
|
|
$ganache_cli --chain.vmErrorsOnRPCResponse false --networkId 1337 --mnemonic "$seed_phrase" ${GANACHE_ARGS:-} &
|
|
|
|
child=$!
|
|
wait "$child"
|