Skip to content

Commit 4feb98e

Browse files
authored
Upd: Convert all line endings to LF (#55)
1 parent 63d22d0 commit 4feb98e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.23'
20+
go-version: '1.24'
2121

2222
- name: Make All
2323
run: make multi VERSION="${{ github.ref_name }}"

pkg/utils/file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func FileYamlMarshalAndWrite(path string, conf interface{}) bool {
3939
func ReadFile(filePath string) ([]byte, bool) {
4040
content, err := os.ReadFile(filePath)
4141
if err != nil {
42-
Logger.Errorln("Error reading file", err)
42+
Logger.Errorln("Error reading file: ", err)
4343
return nil, false
4444
}
4545
return content, true

0 commit comments

Comments
 (0)