Skip to content

Commit

Permalink
Update .github/workflows/scripts/unique_warning_reporter.sh
Browse files Browse the repository at this point in the history
Co-authored-by: Mudit Pandey <[email protected]>
  • Loading branch information
mlxd and mudit2812 authored Nov 13, 2024
1 parent e548251 commit 38ea60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/unique_warning_reporter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cat /tmp/job_$JOBID.out | grep "Warning:" | awk '{split($0,a,"Warning:"); print
declare -A waeCounts

while read -r line; do
[[ -n "$line" && "$line" != [[:blank:]#]* ]] && waeCounts["$line"]=$(cat /tmp/job_$JOBID.out | grep "$line" | wc -l)
[[ -n "$line" && "$line" != [[:blank:]]* ]] && waeCounts["$line"]=$(cat /tmp/job_$JOBID.out | grep "$line" | wc -l)
done <unique_wae.txt
echo $waeCounts

Expand Down

0 comments on commit 38ea60a

Please sign in to comment.