Skip to content

Commit 999b621

Browse files
authored
fix: skip already compressed trampolines
1 parent 4a9a58d commit 999b621

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/trampoline.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ jobs:
114114
# and remove the original file
115115
# by using -f we allow overwriting the file
116116
for file in trampolines/*; do
117+
# Skip files that are already compressed (end with .zst)
118+
if [[ "$file" == *.zst ]]; then
119+
continue
120+
fi
117121
zstd "$file" -f
118122
rm "$file"
119123
done

0 commit comments

Comments
 (0)