From 4d8f2c7a080ef273100b4dd36ea76a08e15cc760 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=A1=B0=EC=9B=85=EC=84=9D/Common=20Platform=20Lab=28SR=29?= =?utf8?q?/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 8 Mar 2022 08:51:15 +0900 Subject: [PATCH] Bug-fix: fix path for pdb file copying (#392) --- NativeLauncher/tool/ni_common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NativeLauncher/tool/ni_common.cc b/NativeLauncher/tool/ni_common.cc index 2ed4b32..859c60a 100644 --- a/NativeLauncher/tool/ni_common.cc +++ b/NativeLauncher/tool/ni_common.cc @@ -407,7 +407,7 @@ static ni_error_e crossgen2PostAction(const std::string& dllPath, const std::str if (opt->flags & NI_FLAGS_APPNI) { std::string appNIPath = getAppNIFilePath(dllPath, opt); moveFile(niPath, appNIPath); - makePdbSymlinkForNI(dllPath, niPath); + makePdbSymlinkForNI(dllPath, appNIPath); _SOUT("Native image %s generated successfully.", appNIPath.c_str()); } else { _SOUT("Native image %s generated successfully.", niPath.c_str()); -- 2.7.4