Cosmetic changes

This commit is contained in:
Daniel Bermond
2026-06-20 11:16:40 -03:00
parent b63cac8151
commit 9982bb4653
+3 -2
View File
@@ -26,9 +26,10 @@ build() {
_jobs="$(nproc)" _jobs="$(nproc)"
# may fail to compile on a high core count system # may fail to compile on a high core count system
if [ "$_jobs" > "$_max_jobs" ] # https://github.com/Netflix/vmaf/issues/1541
if [ "$_jobs" -ge "$_max_jobs" ]
then then
local _jobs="$_max_jobs" _jobs="$_max_jobs"
printf '%s\n' "limiting the compilation jobs to ${_jobs}" printf '%s\n' "limiting the compilation jobs to ${_jobs}"
fi fi