Skip to content

Commit

Permalink
fix: detail
Browse files Browse the repository at this point in the history
  • Loading branch information
gronxb committed Feb 22, 2025
1 parent 536c6b4 commit 9d95b8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/hot-updater/src/commands/init/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ export const deployLambdaEdge = async (

functionArn.arn = createResp.FunctionArn ?? null;
functionArn.version = createResp.Version ?? "1";
return `Created Lambda "${lambdaName}" function`;
} catch (error) {
// Update if function already exists
if (
Expand Down Expand Up @@ -246,6 +247,7 @@ export const deployLambdaEdge = async (
}
throw error;
}
return `Updated Lambda "${lambdaName}" function`;
}
},
},
Expand Down

0 comments on commit 9d95b8c

Please sign in to comment.