diff --git a/customscripts/configure_webhook.sh b/customscripts/configure_webhook.sh index d500151..5763393 100644 --- a/customscripts/configure_webhook.sh +++ b/customscripts/configure_webhook.sh @@ -22,18 +22,18 @@ fi echo -e "\nConfigure Discord Webhook Settings" -if [ -f /tmp/tag.txt ] && [ -f /tmp/webhook.txt ] && [ $webhook -eq 0 ]; then - echo -e "\nExisting Webhook and Tag found. Using those values unless you enter new ones.\n" +if [ -f /tmp/tag.txt ] && [ -f /tmp/webhook.txt ]; then existing_webhook=$(cat /tmp/webhook.txt) existing_tag=$(cat /tmp/tag.txt) + echo -e "\nExisting Webhook and Tag found. Using those values unless you enter new ones.\n" + echo -e "Existing Webhook URL: $existing_webhook" + echo -e "Existing Tag: $existing_tag\n" + # move em into place sudo mv /tmp/tag.txt $finalDir/tag.txt sudo mv /tmp/webhook.txt $finalDir/webhook.txt - echo -e "Existing Webhook URL: $existing_webhook" - echo -e "Existing Tag: $existing_tag\n" - # update permissions fix_perms diff --git a/customscripts/install_script.sh b/customscripts/install_script.sh index f1c3dc8..e2e347e 100644 --- a/customscripts/install_script.sh +++ b/customscripts/install_script.sh @@ -34,7 +34,6 @@ else fi # get the existing tag and webhooks if any -webhook=1 if [ -f $finalDir/tag.txt ]; then echo "Found existing tag.txt, backing up" cp $finalDir/tag.txt /tmp/tag.txt