Skip to content

Commit

Permalink
Exlude CQs filed for hawkBit
Browse files Browse the repository at this point in the history
Signed-off-by: Dominic Schabel <dominic.schabel@bosch.io>
  • Loading branch information
schabdo committed Jan 15, 2021
1 parent 048c07f commit 689ed54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .3rd-party/generateReleaseMd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ echo "## Eclipse CQs - Provided/compile"
echo ""
echo "| Group ID | Artifact ID | Version | CQ |"
echo "|---|---|---|---|---|"
cat compile.txt provided.txt|cut -d':' -f1,2,4|sed -e 's/:/|/g'|while read i; do echo "|$i| []() |";done
cat compile.txt provided.txt|cut -d':' -f1,2,4|while read x; do grep "`echo $x|cut -d':' -f1`\s*|\s*`echo $x|cut -d':' -f2`" ../../hawkbit/.3rd-party/Release*.md -q || echo $x | sed -e 's/:/|/g' |while read i; do echo "|$i| []() |";done;done
echo ""
echo "## Test and build dependencies"
echo ""
echo "CQ: "
echo ""
echo "| Group ID | Artifact ID | Version |"
echo "|---|---|---|"
cut -d':' -f1,2,4 test.txt|sed -e 's/:/|/g'|while read i; do echo "|$i|";done
cut -d':' -f1,2,4 test.txt|while read x; do grep "`echo $x|cut -d':' -f1`\s*|\s*`echo $x|cut -d':' -f2`" ../../hawkbit/.3rd-party/Release*.md -q || echo $x | sed -e 's/:/|/g' |while read i; do echo "|$i|";done;done

0 comments on commit 689ed54

Please sign in to comment.