apng2webp: Remove unneeded shellcheck ignore.

This commit is contained in:
tastytea 2022-02-17 09:34:07 +01:00
parent a2f5be375c
commit e1ee7c6b49
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ popd
counter=1 counter=1
for file in apngdis/apngframe*.png; do for file in apngdis/apngframe*.png; do
# shellcheck disable=2086
cwebp -lossless -q 100 "${file}" -o "$(printf "%02d" ${counter}).webp" cwebp -lossless -q 100 "${file}" -o "$(printf "%02d" ${counter}).webp"
counter=$((counter+1)) counter=$((counter+1))
done done