Skip to content

Commit 20f07b0

Browse files
committed
Force Ceres net downloads to be be uppercase.
1 parent 47a1edf commit 20f07b0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Ceres.Base/Misc/CeresNetDownloader.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ public static void Test()
112112
/// <returns></returns>
113113
private string DoDownloadNet(string ceresNetID, string ceresNetDirectory, ref string targetFileName, bool uciMessagesOnly)
114114
{
115+
// Ceres nets always uppercase (GitHub download is Linux-based and case-sensitive).
116+
ceresNetID = ceresNetID.ToUpper();
117+
115118
IAnsiConsole console = uciMessagesOnly ? null : AnsiConsole.Console;
116119

117120
// Allow user to cancel download with Ctrl-C.

0 commit comments

Comments
 (0)