Skip to content

Commit 8f79433

Browse files
committed
Remove invalid mono-2.0.dll check on Linux
1 parent 6a4ce8b commit 8f79433

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PluginCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ private void OnProcessExited(object sender, EventArgs eventArgs)
541541
Interface.Oxide.LogWarning($"Compiler under user/group: {compilerFileInfo.OwnerUser}/{compilerFileInfo.OwnerGroup}");
542542

543543
string depPath = Path.Combine(Interface.Oxide.ExtensionDirectory, IntPtr.Size == 8 ? "x64" : "x86");
544-
string[] depFiles = { "libmonoboehm-2.0.so.1", "libMonoPosixHelper.so", "mono-2.0.dll" };
544+
string[] depFiles = { "libmonoboehm-2.0.so.1", "libMonoPosixHelper.so" };
545545
foreach (string file in depFiles)
546546
{
547547
string filePath = Path.Combine(depPath, file);

0 commit comments

Comments
 (0)