From: 최종헌/MDE Lab(SR)/삼성전자 Date: Mon, 24 Jul 2023 05:31:21 +0000 (+0900) Subject: Change the priority of the function to check (#476) X-Git-Tag: accepted/tizen/unified/20230726.020653~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=6ea0c495e049470e21e91a8beb2a5123ebb97583;p=platform%2Fcore%2Fdotnet%2Flauncher.git Change the priority of the function to check (#476) --- diff --git a/NativeLauncher/tool/tac_installer.cc b/NativeLauncher/tool/tac_installer.cc index b425bbb..7444f94 100644 --- a/NativeLauncher/tool/tac_installer.cc +++ b/NativeLauncher/tool/tac_installer.cc @@ -121,7 +121,7 @@ static bool copyAssemblyCreateSymlink(std::string binPath, std::string tacDir, s nuget_restoration = true; break; } - if (!copyFile(concatPath(binNiPath, niFile), concatPath(tac_version_dir, niFile)) && exist(binNiPath)) { + if (exist(binNiPath) && !copyFile(concatPath(binNiPath, niFile), concatPath(tac_version_dir, niFile))) { _ERR("Failed to copy of %s", niFile.c_str()); } }