yt-dlp: don't hide error messages in CI test

Fixes: 6746398cb ("yt-dlp: run CI test for the main package only")
Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
George Sapkin
2025-06-29 19:08:34 +03:00
committed by Tianling Shen
parent 731bddc3e8
commit fa8425028a

View File

@@ -1,5 +1,5 @@
#!/bin/sh
if [ "$1" = 'yt-dlp' ]; then
yt-dlp --version 2>&1 | sed 's/\.0\+/./g' | grep -x "$PKG_VERSION"
yt-dlp --version | sed 's/\.0\+/./g' | grep -F "$PKG_VERSION"
fi