150931950d
## Issue Addressed
Resolves https://github.com/sigp/lighthouse/issues/2763
## Proposed Changes
- Add a workflow which tests that local testnet starts successfully
- Added `set` option into the scripts in order to fail fast so that we can notice errors during starting local testnet.
- Fix errors on MacOS
- The redirect `&>>` is supported since bash v4 but the version bundled in macOS(11.6.1) is v3. a54f119c9b
17 lines
217 B
Bash
Executable File
17 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Kill processes
|
|
|
|
set -Eeuo pipefail
|
|
|
|
# First parameter is the file with
|
|
# one pid per line.
|
|
if [ -f "$1" ]; then
|
|
while read pid
|
|
do
|
|
echo killing $pid
|
|
kill $pid
|
|
done < $1
|
|
fi
|
|
|
|
|