From ee672f48254eaaf89f9a400ce26881092a33e4b0 Mon Sep 17 00:00:00 2001 From: Cannon Lock Date: Tue, 26 Mar 2024 14:16:40 -0500 Subject: [PATCH] Unify Build Process - Don't remove the generate folder in the docker build --- generate/param_generator.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/generate/param_generator.go b/generate/param_generator.go index 32d026010..df22db2b9 100644 --- a/generate/param_generator.go +++ b/generate/param_generator.go @@ -192,11 +192,6 @@ func GenParamEnum() { if err != nil { panic(err) } - - // Add a newline to the end of the file - fullJsonBytes = append(fullJsonBytes, []byte("\n")...) - - // Pretty print the json var prettyJSON bytes.Buffer err = json.Indent(&prettyJSON, fullJsonBytes, "", "\t") if err != nil {