From 05021e1df2afd4bca1ce30b97158e0c6fbc79ed2 Mon Sep 17 00:00:00 2001 From: srinandan <13950006+srinandan@users.noreply.github.com> Date: Sat, 7 Jan 2023 12:18:38 -0800 Subject: [PATCH] fix syntax err #82 --- cmd/integrations/execute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/integrations/execute.go b/cmd/integrations/execute.go index f455e5a..c4c9d57 100644 --- a/cmd/integrations/execute.go +++ b/cmd/integrations/execute.go @@ -41,7 +41,7 @@ var ExecuteCmd = &cobra.Command{ }, RunE: func(cmd *cobra.Command, args []string) (err error) { - var content byte[] + var content []byte if executionFile != "" { if _, err := os.Stat(executionFile); os.IsNotExist(err) {