From 744bbd019082211b1c4331b3176fefb85d927831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 24 Nov 2025 12:49:41 +0100 Subject: [PATCH] fix: correct FFmpeg version extraction in verification --- arty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arty.yml b/arty.yml index 068f5aa..f1670a6 100644 --- a/arty.yml +++ b/arty.yml @@ -151,7 +151,7 @@ scripts: # Verify FFmpeg installation if ffmpeg -version > /dev/null 2>&1; then - echo "✓ FFmpeg installed: $(ffmpeg -version | head -1 | cut -d' ' -f3)" + echo "✓ FFmpeg installed: $(ffmpeg -version | head -1 | cut -d ' ' -f3)" else echo "❌ WARNING: FFmpeg not found" fi