Skip to content

Commit 3273319

Browse files
committed
Bump swiftly
1 parent a90d258 commit 3273319

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/swiftly/installers/linux.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface Options {
1515
export 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;

src/swiftly/installers/macos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { homedir } from "os";
88
* Setup Swiftly on macOS
99
*/
1010
export 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();

0 commit comments

Comments
 (0)