Skip to content

Commit 8ebb18d

Browse files
authored
Move location of doc tools (Azure#47906)
1 parent 3989d27 commit 8ebb18d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/scripts/doc-generation.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
try {
44
# Currently having issues downloading from github on windows 2022 so moved to a blob account
55
# https://github.com/mono/api-doc-tools/releases/download/mdoc-5.7.4.9/mdoc-5.7.4.9.zip
6-
Invoke-WebRequest -MaximumRetryCount 10 -Uri "https://azuresdkdocs.blob.core.windows.net/tools/mdoc/5.7.4.9/mdoc-5.7.4.9.zip" `
6+
Invoke-WebRequest -MaximumRetryCount 10 -Uri "https://azuresdkartifacts.z5.web.core.windows.net/tools/mdoc/5.7.4.9/mdoc-5.7.4.9.zip" `
77
-OutFile "mdoc.zip" | Wait-Process; Expand-Archive -Path "mdoc.zip" -DestinationPath "./mdoc/"
88
} catch {
99
$_.Exception | Format-List | Out-Host
@@ -14,7 +14,7 @@
1414
try {
1515
# Currently having issues downloading from github on windows 2022 so moved to a blob account
1616
# https://github.com/dotnet/docfx/releases/download/$(DocFxVersion)/docfx.zip
17-
Invoke-WebRequest -MaximumRetryCount 10 -Uri "https://azuresdkdocs.blob.core.windows.net/tools/docfx/$($env:DOCFXVERSION)/docfx.zip" `
17+
Invoke-WebRequest -MaximumRetryCount 10 -Uri "https://azuresdkartifacts.z5.web.core.windows.net/tools/docfx/$($env:DOCFXVERSION)/docfx.zip" `
1818
-OutFile "docfx.zip" | Wait-Process; Expand-Archive -Path "docfx.zip" -DestinationPath "./docfx/"
1919
} catch {
2020
$_.Exception | Format-List | Out-Host

0 commit comments

Comments
 (0)