Skip to content

Commit 9eb042e

Browse files
setup-butler@v1.0.1 (#2)
- fix download link
1 parent bcd16e8 commit 9eb042e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28892,7 +28892,7 @@ const variantMap = {
2889228892
};
2889328893
function getDownloadUrl(version) {
2889428894
const variant = variantMap[process.platform];
28895-
const baseUrl = 'https://broth.itch.ovh/butler/';
28895+
const baseUrl = 'https://broth.itch.zone/butler/';
2889628896
const archiveName = `butler-${variantMap[process.platform]}.zip`;
2889728897
return [`${baseUrl}${variant}/${version}/archive/default`, archiveName];
2889828898
}

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-butler",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Github Action to setup the butler command line tools for itch.io content authoring.",
55
"author": "RageAgainstThePixel",
66
"license": "MIT",

src/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const variantMap = {
108108

109109
function getDownloadUrl(version: string): [string, string] {
110110
const variant = variantMap[process.platform];
111-
const baseUrl = 'https://broth.itch.ovh/butler/';
111+
const baseUrl = 'https://broth.itch.zone/butler/';
112112
const archiveName = `butler-${variantMap[process.platform]}.zip`;
113113
return [`${baseUrl}${variant}/${version}/archive/default`, archiveName];
114114
}

0 commit comments

Comments
 (0)