8 lines
243 B
Bash
8 lines
243 B
Bash
# at first check path that works for native provider
|
|
DIR=./data/chains/pezkuwichain_local_testnet/paritydb/full
|
|
if [ ! -d $DIR ] ; then
|
|
# check k8s provider
|
|
DIR=/data/chains/pezkuwichain_local_testnet/paritydb/full
|
|
fi
|
|
ls $DIR 2> /dev/null
|