Skip to content

Commit

Permalink
Update compiler manual download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
lukespragg committed Jan 23, 2020
1 parent 7c2b387 commit f2191f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PluginCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private static void DownloadCompiler(WebResponse response, string remoteHash)

if (downloadRetries >= 3)
{
Interface.Oxide.LogInfo($"Couldn't download {FileName}! Please download manually from: https://github.com/OxideMod/Compiler/releases/download/latest/{FileName}");
Interface.Oxide.LogInfo($"Couldn't download {FileName}! Please download manually from: https://github.com/OxideMod/Oxide.CSharp/releases/download/latest/{FileName}");
return;
}

Expand All @@ -160,7 +160,7 @@ private static void DownloadCompiler(WebResponse response, string remoteHash)
}
catch (Exception ex)
{
Interface.Oxide.LogError($"Couldn't download {FileName}! Please download manually from: https://github.com/OxideMod/Compiler/releases/download/latest/{FileName}");
Interface.Oxide.LogError($"Couldn't download {FileName}! Please download manually from: https://github.com/OxideMod/Oxide.CSharp/releases/download/latest/{FileName}");
Interface.Oxide.LogError(ex.Message);
}
}
Expand Down

0 comments on commit f2191f1

Please sign in to comment.