Merge pull request #3673 from yubiuser/fix/double_check_adlist_not_selected

Revert "fix #3336 by creating adlist file even if no list was selecte…
This commit is contained in:
Adam Warner 2020-08-17 17:30:31 +01:00 committed by GitHub
commit 725f02f442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1306,9 +1306,7 @@ chooseBlocklists() {
# In a variable, show the choices available; exit if Cancel is selected # In a variable, show the choices available; exit if Cancel is selected
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) || { printf " %bCancel was selected, exiting installer%b\\n" "${COL_LIGHT_RED}" "${COL_NC}"; rm "${adlistFile}" ;exit 1; } choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) || { printf " %bCancel was selected, exiting installer%b\\n" "${COL_LIGHT_RED}" "${COL_NC}"; rm "${adlistFile}" ;exit 1; }
# create empty adlist file if no list was selected # For each choice available,
: > "${adlistFile}"
# For each choice available
for choice in ${choices} for choice in ${choices}
do do
appendToListsFile "${choice}" appendToListsFile "${choice}"