removed set -e

set -e stopps the script after the grep -v command, which is used to remove unnecessary output without removing eventual occuring error outputs
This commit is contained in:
Robin Kloppe 2024-01-20 15:05:34 +01:00
parent 52786a1caa
commit 37968e070f

View file

@ -14,7 +14,7 @@ while read -r p; do
done <adblocklists.txt
# Breaking before will cause trouble if a URL is not reachable
set -e -u
set -u
#Remove comments in lists and change marker to comment
sed -i -e 's/^!.*$//g' -e 's/#!MARKER-/!MARKER-/g' pre-adblock.txt