Commit 5b139c8
committed
Fix deploy failure in compression sweep under set -euo pipefail
The [ -ge ] && rm shortcut returned 1 on the last loop iteration
when the compressed sibling was smaller than the source (the
normal case), which propagates through the find | while pipe
under pipefail and kills the script. Use a plain if / fi block
so the body always exits cleanly.1 parent 0d667fe commit 5b139c8
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
| |||
0 commit comments