8d325e700b
Full local testnet support for people that don't have `/bin/bash`
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
|