diff --git a/internal/configuration/sources/files/helpers.go b/internal/configuration/sources/files/helpers.go index a2aea24b..aba1a5fd 100644 --- a/internal/configuration/sources/files/helpers.go +++ b/internal/configuration/sources/files/helpers.go @@ -3,6 +3,7 @@ package files import ( "io" "os" + "strings" ) // ReadFromFile reads the content of the file as a string. @@ -27,5 +28,7 @@ func ReadFromFile(filepath string) (s *string, err error) { } content := string(b) + content = strings.TrimSuffix(content, "\r\n") + content = strings.TrimSuffix(content, "\n") return &content, nil }