1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-22 14:58:08 +00:00

delete adlists.list if user cancels out of this dialog

Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
Adam Warner 2018-04-17 19:35:46 +01:00
parent 2e4f49a223
commit b6b1dcb275
No known key found for this signature in database
GPG Key ID: F5410858022DA5EB

View File

@ -970,7 +970,7 @@ chooseBlocklists() {
HostsFile "Hosts-file.net Ads" on) HostsFile "Hosts-file.net Ads" on)
# 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) || { echo -e " ${COL_LIGHT_RED}Cancel was selected, exiting installer${COL_NC}"; exit 1; } choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) || { echo -e " ${COL_LIGHT_RED}Cancel was selected, exiting installer${COL_NC}"; rm "${adlistFile}" ;exit 1; }
# For each choice available, # For each choice available,
for choice in ${choices} for choice in ${choices}
do do