Skip to content

Commit 636b850

Browse files
committed
🔧 Fix: Can't find file absolute path
1 parent 549c83c commit 636b850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Algorithm.Interop/Environment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static bool CheckEnvironment()
4444
{
4545
foreach (string fn in CoreFiles)
4646
{
47-
if (!File.Exists($"{dll_path}{fn}"))
47+
if (!File.Exists(Path.GetFullPath($"{dll_path}{fn}")))
4848
return false;
4949
}
5050
return true;

0 commit comments

Comments
 (0)