From e0d3c8ef15331a0e18990a5fc443fe3a8ff9d6ee Mon Sep 17 00:00:00 2001 From: BarnacleBoy Date: Mon, 4 May 2026 20:21:19 +0000 Subject: [PATCH] Fix eepsite sed pattern to match actual I2P link format --- .forgejo/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 990c197..7ca9261 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -53,8 +53,8 @@ jobs: for page in "${SHARED_PAGES[@]}"; do cp "$CLEARNET/$page" "$EEPSITE/$page" - # Replace I2P mirror link with clearnet reference - sed -i 's|🔒 I2P Mirror:.*b32\.i2p

|🌐 Clearnet: https://krustyplanet.org

|' "$EEPSITE/$page" + # Replace I2P self-reference with clearnet link + sed -i 's|🔒 I2P:.*

|🌐 Clearnet: https://krustyplanet.org

|' "$EEPSITE/$page" # Remove nav links to clearnet-only pages sed -i '/href="\/free-audit\.html"/d' "$EEPSITE/$page"