File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ interface Options {
1515export async function setupLinux ( options : Options ) {
1616 await prerequisites ( ) ;
1717
18- let path = find ( "swiftly" , "1.0 .0" ) ;
18+ let path = find ( "swiftly" , "1.1 .0" ) ;
1919
2020 if ( ! path ) {
2121 path = await download ( options ) ;
@@ -32,7 +32,7 @@ async function download({ skipVerifySignature = false }: Options = {}) {
3232 info ( "Downloading Swiftly" ) ;
3333
3434 const m = machine ( ) ;
35- const url = `https://download.swift.org/swiftly/linux/swiftly-1.0 .0-${ m } .tar.gz` ;
35+ const url = `https://download.swift.org/swiftly/linux/swiftly-1.1 .0-${ m } .tar.gz` ;
3636
3737 debug ( `Downloading Swiftly from ${ url } ` ) ;
3838
@@ -50,7 +50,7 @@ async function download({ skipVerifySignature = false }: Options = {}) {
5050 const extracted = await extractTar ( pkg ) ;
5151 debug ( `Extracted Swiftly to ${ extracted } ` ) ;
5252
53- const cached = await cacheDir ( extracted , "swiftly" , "1.0 .0" ) ;
53+ const cached = await cacheDir ( extracted , "swiftly" , "1.1 .0" ) ;
5454 debug ( `Cached Swiftly to ${ cached } ` ) ;
5555
5656 return cached ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { homedir } from "os";
88 * Setup Swiftly on macOS
99 */
1010export async function setupMacOS ( ) {
11- let path = find ( "swiftly" , "1.0 .0" ) ;
11+ let path = find ( "swiftly" , "1.1 .0" ) ;
1212
1313 if ( ! path ) {
1414 path = await download ( ) ;
You can’t perform that action at this time.
0 commit comments