Add missing newline to created env files (#133)

This commit is contained in:
Alexander Klein
2021-03-04 10:35:31 +01:00
committed by GitHub
parent f562099a43
commit ddf83eb33b

View File

@ -157,7 +157,7 @@ func Write(envMap map[string]string, filename string) error {
return err
}
defer file.Close()
_, err = file.WriteString(content)
_, err = file.WriteString(content + "\n")
if err != nil {
return err
}