Skip to content

Commit

Permalink
setup-butler@v1.0.1 (#2)
Browse files Browse the repository at this point in the history
- fix download link
  • Loading branch information
StephenHodgson authored Dec 25, 2024
1 parent bcd16e8 commit 9eb042e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28892,7 +28892,7 @@ const variantMap = {
};
function getDownloadUrl(version) {
const variant = variantMap[process.platform];
const baseUrl = 'https://broth.itch.ovh/butler/';
const baseUrl = 'https://broth.itch.zone/butler/';
const archiveName = `butler-${variantMap[process.platform]}.zip`;
return [`${baseUrl}${variant}/${version}/archive/default`, archiveName];
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-butler",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Github Action to setup the butler command line tools for itch.io content authoring.",
"author": "RageAgainstThePixel",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const variantMap = {

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

0 comments on commit 9eb042e

Please sign in to comment.