Browse Source

fix response check

v1.1
Christian Rotzoll 6 years ago
parent
commit
209a1c7630
  1. 2
      home.admin/50copyHDD.sh

2
home.admin/50copyHDD.sh

@ -33,7 +33,7 @@ if [ -d "/mnt/hdd/bitcoin" ]; then
dialog --title "Fresh or Repair" --yesno "Do you want to delete the old/local blockchain data now?" 8 60
response=$?
echo "response(${response})"
if [ "${$response}" = "1" ]; then
if [ "${response}" = "1" ]; then
echo "OK - keep old blockchain - just try to repair by copying over it"
sleep 3
else

Loading…
Cancel
Save