14 lines
388 B
Bash
14 lines
388 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Copyright (c) 2020-2021 Status Research & Development GmbH. Licensed under
|
||
|
# either of:
|
||
|
# - Apache License, version 2.0
|
||
|
# - MIT license
|
||
|
# at your option. This file may not be copied, modified, or distributed except
|
||
|
# according to those terms.
|
||
|
|
||
|
cd "$(dirname $0)"
|
||
|
# Allow the binary to receive signals directly.
|
||
|
exec scripts/run-beacon-node.sh nimbus_beacon_node prater $@
|
||
|
|