Add missing newline to created env files (#133)

pull/140/head v1.4.0
Alexander Klein 2021-03-04 10:35:31 +01:00 committed by GitHub
parent f562099a43
commit ddf83eb33b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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
}