move wait key

This commit is contained in:
rootzoll 2020-02-17 14:52:45 +01:00
parent e7de7264b3
commit a0cdca5d8a
2 changed files with 5 additions and 2 deletions

View File

@ -194,8 +194,6 @@ case $CHOICE in
;;
EXPORT)
sudo /home/admin/config.scripts/lnd.export.sh
echo "Press ENTER to return to main menu."
read key
;;
NAME)
sudo /home/admin/config.scripts/lnd.setname.sh

View File

@ -162,4 +162,9 @@ elif [ "${exportType}" = "reset" ]; then
else
echo "FAIL: unknown '${exportType}' -run-> ./lnd.export.sh -h"
fi
if [ "$1" = "" ] || [ $# -eq 0 ]; then
echo "Press ENTER to return to main menu."
read key
fi