From 88a2a5441c9ef0754f7c19e003bc4565fd0823ae Mon Sep 17 00:00:00 2001 From: Mike Deeks Date: Fri, 14 May 2021 14:09:56 -0700 Subject: [PATCH] Fix newline formatting issue Lack of line break causes lines to print together --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2842bbaa..65c15cfa 100644 --- a/main.go +++ b/main.go @@ -386,7 +386,7 @@ func installOption(listAll bool, custBinPath *string) { // install when tf file is provided func installTFProvidedModule(dir string, custBinPath *string) { - fmt.Printf("Reading required version from terraform file") + fmt.Printf("Reading required version from terraform file\n") module, _ := tfconfig.LoadModule(dir) tfconstraint := module.RequiredCore[0] //we skip duplicated definitions and use only first one installFromConstraint(&tfconstraint, custBinPath)