@@ -55,7 +55,7 @@ export async function updateStack(
5555 stack : Stack ,
5656 params : CreateChangeSetInput ,
5757 noEmptyChangeSet : boolean ,
58- noExecuteChageSet : boolean ,
58+ noExecuteChangeSet : boolean ,
5959 noDeleteFailedChangeSet : boolean
6060) : Promise < string | undefined > {
6161 core . debug ( 'Creating CloudFormation Change Set' )
@@ -79,7 +79,7 @@ export async function updateStack(
7979 )
8080 }
8181
82- if ( noExecuteChageSet ) {
82+ if ( noExecuteChangeSet ) {
8383 core . debug ( 'Not executing the change set' )
8484 return stack . StackId
8585 }
@@ -124,7 +124,7 @@ export async function deployStack(
124124 cfn : aws . CloudFormation ,
125125 params : CreateStackInput ,
126126 noEmptyChangeSet : boolean ,
127- noExecuteChageSet : boolean ,
127+ noExecuteChangeSet : boolean ,
128128 noDeleteFailedChangeSet : boolean
129129) : Promise < string | undefined > {
130130 const stack = await getStack ( cfn , params . StackName )
@@ -159,7 +159,7 @@ export async function deployStack(
159159 }
160160 } ,
161161 noEmptyChangeSet ,
162- noExecuteChageSet ,
162+ noExecuteChangeSet ,
163163 noDeleteFailedChangeSet
164164 )
165165}
0 commit comments