From 23d73d711f850a36434f668247e3bbe2f8cb3a3b Mon Sep 17 00:00:00 2001 From: Alexander Hoppe Date: Mon, 21 Jul 2025 11:39:51 +0000 Subject: [PATCH] don't skip workflow files --- domain-replacer/replace.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/domain-replacer/replace.sh b/domain-replacer/replace.sh index b43e81c1..ffe6bc6a 100644 --- a/domain-replacer/replace.sh +++ b/domain-replacer/replace.sh @@ -3,7 +3,8 @@ set -e echo "Scanning for files to update..." -find . -type f ! -name "go.sum" ! -path "./domain-replacer/*" ! -path "./.github/workflows/*" | while read -r file; do +#find . -type f ! -name "go.sum" ! -path "./domain-replacer/*" ! -path "./.github/workflows/*" | while read -r file; do +find . -type f ! -name "go.sum" | while read -r file; do echo "Checking $file" if grep -q 'github.com/dell/' "$file"; then echo "Updating $file"