Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit aa5f583

Browse files
committed
ignore known bad paths in ls-files
1 parent b0632b2 commit aa5f583

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

codecov

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,8 +1119,12 @@ fi
11191119

11201120
if [ "$ft_network" == "1" ];
11211121
then
1122-
echo "$network
1123-
<<<<<< network" >> $upload_file
1122+
i="woff|eot|otf" # fonts
1123+
i="$i|gif|png|jpg|jpeg|psd" # images
1124+
i="$i|ptt|pptx|numbers|pages|md|txt|xlsx|docx|doc|pdf" # docs
1125+
i="$i|yml|yaml|.gitignore|" # supporting docs
1126+
echo "$network" | grep -vwE "($i)$" >> $upload_file
1127+
echo "<<<<<< network" >> $upload_file
11241128
fi
11251129

11261130
fr=0

0 commit comments

Comments
 (0)