From b2006fa57ed3d258629c78369a477a7c55534758 Mon Sep 17 00:00:00 2001 From: arfoux <129370680+arfoux@users.noreply.github.com> Date: Sun, 25 Aug 2024 12:42:38 +0700 Subject: [PATCH] Update action.yml --- .github/workflows/action.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index bd1bcf1..21d1896 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -17,16 +17,15 @@ jobs: echo "Downloading big adblock list..." curl -s 'https://big.oisd.nl/domainswild' -o oisd_big_domainswild.txt awk '/^\*\./ && !x {print "# https://github.com/arfoux/clash-rule-providers \n\npayload:"; x=1} 1' oisd_big_domainswild.txt > big.txt - sed -i 's/^\*\./ - \'+./g' big.txt + sed -i 's/^\*\./ - \+./g' big.txt rm -f oisd_big_domainswild.txt # Download small adblock list echo "Downloading small adblock list..." curl -s 'https://small.oisd.nl/domainswild' -o oisd_small_domainswild.txt awk '/^\*\./ && !x {print "# https://github.com/arfoux/clash-rule-providers \n\npayload:"; x=1} 1' oisd_small_domainswild.txt > small.txt - sed -i 's/^\*\./ - \'+./g' small.txt + sed -i 's/^\*\./ - \+./g' small.txt rm -f oisd_small_domainswild.txt - - uses: stefanzweifel/git-auto-commit-action@v4 with: