Skip to content

Commit

Permalink
fix: don't use strict check
Browse files Browse the repository at this point in the history
  • Loading branch information
theBenForce committed Apr 23, 2020
1 parent b19bec3 commit 2821021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const templateTags = [
(outputs: AWS.CloudFormation.Outputs, stack) =>
outputs.concat(stack.Outputs),
[]
).find((output) => output.OutputKey === output);
).find((output) => output.OutputKey == output);

if (!resultOutput?.OutputValue) {
throw new Error(
Expand Down

0 comments on commit 2821021

Please sign in to comment.