From 55d8776ae26317382412379e935f09976c2cf6b3 Mon Sep 17 00:00:00 2001 From: oneflux Date: Mon, 21 Apr 2025 18:37:00 -0700 Subject: [PATCH] remove uBO asset fetcher --- scripts/update-ubo-assets.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 scripts/update-ubo-assets.sh diff --git a/scripts/update-ubo-assets.sh b/scripts/update-ubo-assets.sh deleted file mode 100644 index 4f8eac7..0000000 --- a/scripts/update-ubo-assets.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -set -e -echo "update-ubo-assets.sh" -echo - -# Download the LibreWolf uBOAssets.json -echo "-> Downloading LibreWolf uBOAssets.json" -assets=$(curl https://gitlab.com/librewolf-community/browser/source/-/raw/main/assets/uBOAssets.json) - -# Remove specified filter lists -echo "-> Removing specified filter lists" -assets=$(echo "$assets" | jq 'del(.["ublock-badware"], .["urlhaus-1"], .["curben-phishing"])') - -# Write the resulting json -echo "-> Writing to assets/uBOAssets.json" -echo $assets | jq . >./assets/uBOAssets.json - -echo -echo "Done!" \ No newline at end of file