mirror of
https://github.com/decompals/wibo.git
synced 2025-12-12 14:46:09 +00:00
Docker build fixes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user