Browse Source

fix(build): conf util add printing newline for log

ngjaying 3 years atrás
parent
commit
b5b0f4a93e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deploy/docker/conf_util.go

+ 1 - 1
deploy/docker/conf_util.go

@@ -72,7 +72,7 @@ func main() {
 				if e := ioutil.WriteFile(fname, bs, 0644); e != nil {
 					fmt.Println(e)
 				} else {
-					fmt.Printf("%s updated", fname)
+					fmt.Printf("%s updated\n", fname)
 				}
 			}
 		}