Skip to content

Commit a18ff26

Browse files
Fix download url in GoTool (#21389)
Co-authored-by: Steve Kuznetsov <[email protected]>
1 parent dbb0aed commit a18ff26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tasks/GoToolV0/gotool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function getFileName(version: string): string {
101101
}
102102

103103
function getDownloadUrl(filename: string): string {
104-
return util.format("https://storage.googleapis.com/golang/%s", filename);
104+
return util.format("https://go.dev/dl/%s", filename);
105105
}
106106

107107
function setGoEnvironmentVariables(goRoot: string) {

Tasks/GoToolV0/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Microsoft Corporation",
1414
"version": {
1515
"Major": 0,
16-
"Minor": 263,
16+
"Minor": 264,
1717
"Patch": 0
1818
},
1919
"satisfies": [

Tasks/GoToolV0/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Microsoft Corporation",
1414
"version": {
1515
"Major": 0,
16-
"Minor": 263,
16+
"Minor": 264,
1717
"Patch": 0
1818
},
1919
"satisfies": [

0 commit comments

Comments
 (0)