From b6f8f31b7cf736a8e11e7af4a26aabbf787870e9 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 28 Mar 2025 08:27:30 -0400 Subject: [PATCH] rbutil: Fall back from 'development' to 'daily' for all non-firmware artifacts Before we only fell back for manuals and fonts, whereas we also needed to fall back for source and voices. Given that dev builds only produce the actual binaries, just fall back for everything else. Change-Id: Ibd84a942d380f69c86ca2243cb2c192de7efd047 --- utils/rbutilqt/base/playerbuildinfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/rbutilqt/base/playerbuildinfo.cpp b/utils/rbutilqt/base/playerbuildinfo.cpp index 1673f73d6b..a6f155645f 100644 --- a/utils/rbutilqt/base/playerbuildinfo.cpp +++ b/utils/rbutilqt/base/playerbuildinfo.cpp @@ -130,9 +130,9 @@ QVariant PlayerBuildInfo::value(BuildInfo item, BuildType type) break; case TypeDevel: buildtypename = "development"; - // manual and fonts don't exist for development builds. We do have an - // URL configured, but need to get the daily version instead. - if(item == BuildManualUrl || item == BuildFontUrl) { + // For development builds, we only provide the binaries. + // For the rest, get the daily version instead. + if(item != BuildUrl) { LOG_INFO() << "falling back to daily build for this info value"; buildtypename = "daily"; }