Skip to content

Commit

Permalink
Remove invalid mono-2.0.dll check on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
lukespragg committed Feb 7, 2020
1 parent 6a4ce8b commit 8f79433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PluginCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ private void OnProcessExited(object sender, EventArgs eventArgs)
Interface.Oxide.LogWarning($"Compiler under user/group: {compilerFileInfo.OwnerUser}/{compilerFileInfo.OwnerGroup}");

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

0 comments on commit 8f79433

Please sign in to comment.