@@ -22,7 +22,7 @@ import configuration from "../configuration";
22
22
* Open the installation page on Swift.org
23
23
*/
24
24
export async function downloadToolchain ( ) {
25
- if ( await vscode . env . openExternal ( vscode . Uri . parse ( "https://www.swift.org/install/ " ) ) ) {
25
+ if ( await vscode . env . openExternal ( vscode . Uri . parse ( "https://www.swift.org/install" ) ) ) {
26
26
const selected = await showReloadExtensionNotification (
27
27
"The Swift extension must be reloaded once you have downloaded and installed the new toolchain." ,
28
28
"Select Toolchain"
@@ -37,9 +37,7 @@ export async function downloadToolchain() {
37
37
* Open the installation page for Swiftly
38
38
*/
39
39
export async function installSwiftly ( ) {
40
- if (
41
- await vscode . env . openExternal ( vscode . Uri . parse ( "https://swift-server.github.io/swiftly/" ) )
42
- ) {
40
+ if ( await vscode . env . openExternal ( vscode . Uri . parse ( "https://swiftlang.github.io/swiftly" ) ) ) {
43
41
const selected = await showReloadExtensionNotification (
44
42
"The Swift extension must be reloaded once you have downloaded and installed the new toolchain." ,
45
43
"Select Toolchain"
@@ -200,14 +198,14 @@ async function getQuickPickItems(
200
198
actionItems . push ( {
201
199
type : "action" ,
202
200
label : "$(cloud-download) Install Swiftly for toolchain management..." ,
203
- detail : "Install https://swift-server .github.io/swiftly/ to manage your toolchains on Linux" ,
201
+ detail : "Install https://swiftlang .github.io/swiftly to manage your toolchains on Linux" ,
204
202
run : installSwiftly ,
205
203
} ) ;
206
204
}
207
205
actionItems . push ( {
208
206
type : "action" ,
209
207
label : "$(cloud-download) Download from Swift.org..." ,
210
- detail : "Open https://swift.org/install/ to download and install a toolchain" ,
208
+ detail : "Open https://swift.org/install to download and install a toolchain" ,
211
209
run : downloadToolchain ,
212
210
} ) ;
213
211
actionItems . push ( {
0 commit comments