Docker build fixes

This commit is contained in:
2025-10-05 14:37:45 -06:00
parent 0bc80b6618
commit 5a2f8e2926
3 changed files with 8 additions and 2 deletions

View File

@@ -362,7 +362,8 @@ int main(int argc, char **argv) {
}
// Resolve the guest program path
std::filesystem::path resolvedGuestPath = wibo::resolveExecutable(programName, true).value_or({});
std::filesystem::path resolvedGuestPath =
wibo::resolveExecutable(programName, true).value_or(std::filesystem::path{});
if (resolvedGuestPath.empty()) {
fprintf(stderr, "Failed to resolve path to guest program %s\n", programName.c_str());
return 1;