mirror of
https://github.com/trezor/blockbook.git
synced 2026-03-06 15:48:01 +01:00
11 lines
209 B
Bash
Executable File
11 lines
209 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
HERE=$(dirname $(readlink -f $0))
|
|
ROOT_DIR=$(dirname $HERE)
|
|
BLOCKBOOK_DATA_DIR=$ROOT_DIR/data
|
|
|
|
echo "Removing blockbook data dir - $BLOCKBOOK_DATA_DIR..."
|
|
rm -rf $BLOCKBOOK_DATA_DIR
|