Skip to content

Commit 676af6e

Browse files
committed
testing
1 parent 5309f84 commit 676af6e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
cd ../../..
3+
for item in *; do
4+
if [[ -d "$item" ]] && [[ "$item" != ".git" ]] && [[ "$item" != "target" ]]; then
5+
cd "$item" || exit
6+
echo "----------------- Removing Badge on project $item -----------------"
7+
find . -name "Makefile" | while IFS= read -r readme; do
8+
sed -e 's|^curl -sL https://raw.githubusercontent.com/jesperancinha/project-signer/master/pluginUpdatesOne.sh \| bash$|echo "Command replaced"|g' "$readme" > "$readme""01"
9+
mv "$readme""01" "$readme"
10+
done
11+
cd ..
12+
fi
13+
done
14+
cd project-signer/one-offs/decom || exit

0 commit comments

Comments
 (0)