From 60893fcebb67fa05d6330912f0e4380042210436 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Tue, 17 Jun 2025 00:48:11 -0700 Subject: [PATCH] fix(ffmpeg): see I'm blind (#5538) (#5540) (cherry picked from commit 6e81f7d42d3d30bdaf2328e40b8abe2f2edafc65) Signed-off-by: madomado Co-authored-by: madomado --- anda/multimedia/ffmpeg/update.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/multimedia/ffmpeg/update.rhai b/anda/multimedia/ffmpeg/update.rhai index b9aa2adae7..aa48382451 100644 --- a/anda/multimedia/ffmpeg/update.rhai +++ b/anda/multimedia/ffmpeg/update.rhai @@ -8,7 +8,7 @@ open_file("anda/multimedia/ffmpeg/VERSION_tesseract.txt", "w").write(bump::bodhi open_file("anda/multimedia/ffmpeg/VERSION_vvenc.txt", "w").write(bump::madoguchi("vvenc-libs", labels.branch)); let dir = sub(`/[^/]+`, "", __script_path); -if sh("[[ `git status " + dir + "--porcelain` ]] && exit 1 || exit 0", #{}).ctx.rc == 1 { +if sh("[[ `git status " + dir + " --porcelain` ]] && exit 1 || exit 0", #{}).ctx.rc == 1 { let rel = spec::get_release(rpm).parse_int(); rpm.release(rel + 1); }