From 905fcca336d61fe3eb2816650a9e3b80f8dddb13 Mon Sep 17 00:00:00 2001 From: Adithya Kolla Date: Tue, 22 Aug 2023 13:48:27 -0700 Subject: [PATCH] reenable ctrl-c --- internal/pkg/deploy/cloudformation/cloudformation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/deploy/cloudformation/cloudformation.go b/internal/pkg/deploy/cloudformation/cloudformation.go index be7a7b10695..9f7ea5c1968 100644 --- a/internal/pkg/deploy/cloudformation/cloudformation.go +++ b/internal/pkg/deploy/cloudformation/cloudformation.go @@ -283,7 +283,7 @@ type executeAndRenderChangeSetOption func(in *executeAndRenderChangeSetInput) func withEnableInterrupt() executeAndRenderChangeSetOption { return func(in *executeAndRenderChangeSetInput) { - in.enableInterrupt = false + in.enableInterrupt = true } }