switch to ffmpeg 8.0

This commit is contained in:
2025-08-23 13:03:24 -05:00
parent fbfb7c224d
commit 9d7c85b250
2 changed files with 4 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ set_docker_run_flags() {
for opt in "${FB_COMP_OPTS[@]}"; do
declare -n defOptVal="DEFAULT_${opt}"
declare -n optVal="${opt}"
if [[ -n ${optVal} && ${optVal} != "${defOptVal}" ]]; then
if [[ -v optVal && ${optVal} != "${defOptVal}" ]]; then
DOCKER_RUN_FLAGS+=("-e" "${opt}=${optVal}")
fi
done