Skip to content

Commit

Permalink
Remembered about the local linter. All problems fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Raleksan committed Oct 3, 2024
1 parent bbe243f commit 0362472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions steps/report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ for idx in "${!groups[@]}"; do
group_metrics=$(grep -oP ".*\[\b${groups[$idx]}\b\].*" "${list}")
fi
while IFS= read -r metric; do
clean_metric=$(echo "${metric}" | sed 's/\[[^]]*\]//g')
printf "\t%s\n" "$clean_metric" >> "${st_list}"
clean_metric="${metric//\[*\]/}"
printf "\t%s\n" "${clean_metric}" >> "${st_list}"
done <<< "$group_metrics"
printf "\\\\end{itemize}\n" >> "${st_list}"
done
Expand Down

0 comments on commit 0362472

Please sign in to comment.