Browse Source

fix - check that bitcoin.conf file exists before deletion

feat-mydojo_upgrade_explorer
kenshin-samourai 5 years ago
parent
commit
b2819af937
  1. 4
      docker/my-dojo/install/upgrade-scripts.sh

4
docker/my-dojo/install/upgrade-scripts.sh

@ -61,5 +61,7 @@ cleanup() {
#################
# Remove deprecated bitcoin.conf file
rm ./bitcoin/bitcoin.conf
if [ -f ./bitcoin/bitcoin.conf ]; then
rm ./bitcoin/bitcoin.conf
fi
}

Loading…
Cancel
Save