Skip to content

Commit 59d2fe5

Browse files
authoredApr 24, 2025··
build: use relative paths if needed
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 16bce1e commit 59d2fe5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎.github/workflows/cleanup_coverage.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,12 @@ jobs:
124124
125125
# Delete directories:
126126
while IFS= read -r dir; do
127-
if [ -n "$dir" ]; then
127+
if [ -d "$dir" ]; then
128128
rm -r -- "$dir"
129+
elif [ -d "./$dir" ]; then
130+
rm -r -- "./$dir"
131+
else
132+
echo "Warning: Directory not found: $dir"
129133
fi
130134
done < dirs_to_remove.txt
131135

0 commit comments

Comments
 (0)
Please sign in to comment.