mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
14 lines
165 B
Bash
Executable File
14 lines
165 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Deletes all files associated with the local testnet.
|
|
#
|
|
|
|
set -Eeuo pipefail
|
|
|
|
source ./vars.env
|
|
|
|
if [ -d $DATADIR ]; then
|
|
rm -r $DATADIR
|
|
fi
|