From 22bdd25af1cde4302d53d0d447033ac9e4ba70f6 Mon Sep 17 00:00:00 2001 From: Woongsuk Date: Tue, 18 Mar 2025 09:58:13 +0900 Subject: [PATCH] bug-fix: iterate for all runtime paths There was an error in directory iteration due to an incorrect break statesment during target resolving. --- NativeLauncher/tool/multi_target_resolver.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/NativeLauncher/tool/multi_target_resolver.cc b/NativeLauncher/tool/multi_target_resolver.cc index 201c287..af9527f 100644 --- a/NativeLauncher/tool/multi_target_resolver.cc +++ b/NativeLauncher/tool/multi_target_resolver.cc @@ -186,7 +186,6 @@ int resolvePlatformSpecificFiles(const std::string& rootPath) break; } } - break; } } } catch (const bf::filesystem_error& error) { -- 2.34.1