Skip to content

Commit

Permalink
fix: Forgot a break inside a switch
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Apr 9, 2020
1 parent 6c3b311 commit 868678a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4558,6 +4558,7 @@ function getLazarus(version) {
throw new Error('getLazarus - Platform not supported: ${platform}');
break;
}
break;
case '2.0.6':
yield downloadLazarus(version, '3.0.4');
break;
Expand Down
2 changes: 1 addition & 1 deletion 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-lazarus",
"version": "1.0.15",
"version": "1.0.16",
"description": "Set up your GitHub Actions workflow with a specific version of Lazarus",
"main": "lib/setup-lazarus.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export async function getLazarus(version) {
throw new Error('getLazarus - Platform not supported: ${platform}');
break;
}
break;
case '2.0.6':
await downloadLazarus(version, '3.0.4');
break;
Expand Down

0 comments on commit 868678a

Please sign in to comment.