Update printWarning()

This commit is contained in:
Santiago Lo Coco 2022-02-28 23:44:52 -03:00
parent 48e6032801
commit bedb424fc7
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namcapAnalysis() {
printWarnings() {
[ ${#warnings[@]} -eq 0 ] && return
for warning in "${warnings[@]}"; do
echo "::warning::$1:$warning"
echo "::warning::$1 ——— $warning"
done
}