Skip to content

Commit e6442a6

Browse files
authored
build: add back check for empty dir
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 59d2fe5 commit e6442a6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/cleanup_coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ jobs:
124124
125125
# Delete directories:
126126
while IFS= read -r dir; do
127+
if [ -z "$dir" ]; then
128+
continue
129+
fi
127130
if [ -d "$dir" ]; then
128131
rm -r -- "$dir"
129132
elif [ -d "./$dir" ]; then

0 commit comments

Comments
 (0)