From bad8179a525bb0c913482a40fa6975a2d657f14c Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 7 May 2022 21:38:53 +0200 Subject: [PATCH] Update daily_README.yaml --- .github/workflows/daily_README.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily_README.yaml b/.github/workflows/daily_README.yaml index 44c9f9079..fef442c0a 100644 --- a/.github/workflows/daily_README.yaml +++ b/.github/workflows/daily_README.yaml @@ -40,14 +40,14 @@ jobs: fi # Clean previously reported issues - find "$f" -iname readme.md | cut -d "/" -f2 | xargs sed -i "/Open Issues :/d" + find "$f" -iname readme.md | xargs sed -i "/Open Issues :/d" # If there is an issue with the addon name in title, put a message OPENISSUES=$(sed -n "/Title.*$f/I p" issueslist) if [ "$OPENISSUES" != "" ]; then while read -r line do - find "$f" -iname readme.md | cut -d "/" -f2 | xargs sed -i "1i Open Issue : $line" + find "$f" -iname readme.md | xargs sed -i "1i Open Issue : $line" done <<< "$OPENISSUES" fi