fix(settings): trim trailing new line from files
This commit is contained in:
@@ -3,6 +3,7 @@ package files
|
|||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ReadFromFile reads the content of the file as a string.
|
// 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 := string(b)
|
||||||
|
content = strings.TrimSuffix(content, "\r\n")
|
||||||
|
content = strings.TrimSuffix(content, "\n")
|
||||||
return &content, nil
|
return &content, nil
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user