Skip to content

Commit 281c2af

Browse files
committed
CSHARP-2273: Index.html must be renamed index.html (lowercase).
1 parent 2a79ee4 commit 281c2af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Task("ApiDocs")
197197

198198
var lowerCaseIndexFile = artifactsDocsApiDocsDirectory.CombineWithFilePath("index.html");
199199
var upperCaseIndexFile = artifactsDocsApiDocsDirectory.CombineWithFilePath("Index.html");
200-
MoveFile(lowerCaseIndexFile, upperCaseIndexFile);
200+
MoveFile(upperCaseIndexFile, lowerCaseIndexFile);
201201

202202
var apiDocsZipFileName = artifactsDocsApiDocsDirectory.GetDirectoryName() + "-html.zip";
203203
var apiDocsZipFile = artifactsDocsDirectory.CombineWithFilePath(apiDocsZipFileName);

0 commit comments

Comments
 (0)