Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Zone Tome <[email protected]>
  • Loading branch information
zxypro1 committed Jun 22, 2024
1 parent bbf9550 commit 3033a2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serverless-devs/engine",
"version": "0.1.3-beta.1",
"version": "0.1.3",
"description": "a engine lib for serverless-devs",
"main": "lib/index.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions packages/engine/src/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,7 @@ You can still use them now, but we suggest to modify them.`)
};
try {
// Execute the command for the component with the prepared inputs.
await instance[command](newInputs);
return;
return await instance[command](newInputs);;
} catch (e) {
const error = e as Error;
// Check if the failure is allowed based on the record's allowFailure setting.
Expand Down

0 comments on commit 3033a2c

Please sign in to comment.