We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcee4e4 commit ef28fceCopy full SHA for ef28fce
1 file changed
.github/workflows/publish_book.yml
@@ -36,7 +36,7 @@ jobs:
36
37
- name: Optimize still images
38
run: |
39
- parallel -0 -a < (find pages/ \( -iname "*.png" -o -iname "*.jpg" -o -iname "*.jpeg" \) -print0) << 'EOF'
+ parallel -0 -a <(find pages/ \( -iname "*.png" -o -iname "*.jpg" -o -iname "*.jpeg" \) -print0) << 'EOF'
40
msg=$(cwebp -quiet -lossless -q 100 {} -o {.}.webp 2>&1 >/dev/null)
41
status=$?
42
if [ $status -eq 0 ]; then
@@ -51,7 +51,7 @@ jobs:
51
52
- name: Optimize gif images
53
54
- parallel -0 -a < (find pages/ -iname "*.gif" -print0) << 'EOF'
+ parallel -0 -a <(find pages/ -iname "*.gif" -print0) << 'EOF'
55
msg=$(gif2webp -quiet -min_size -q 100 {} -o {.}.webp 2>&1 >/dev/null)
56
57
0 commit comments