Skip to content

Commit 976aade

Browse files
committed
Fixed wrong condition
1 parent 6236f7d commit 976aade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-image-decoding.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
cd avif-sample-images
4545
for file in $(find . -name \*.avif); do
4646
file=$(basename ${file})
47-
if (cat ${file} | grep "\(monochrome\|crop\|rotate\|mirror\)"); then
47+
if (echo ${file} | grep "\(monochrome\|crop\|rotate\|mirror\)"); then
4848
# FIXME(ledyba-z): Check them.
4949
echo "Ignore: ${file}"
5050
continue

0 commit comments

Comments
 (0)