mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-20 16:10:50 +00:00
Fix diff css style, hooks \r char
This commit is contained in:
parent
963354c5d7
commit
3005c4f6db
2 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ func (h *Hook) Update() error {
|
|||
if len(strings.TrimSpace(h.Content)) == 0 {
|
||||
return os.Remove(h.path)
|
||||
}
|
||||
return ioutil.WriteFile(h.path, []byte(h.Content), os.ModePerm)
|
||||
return ioutil.WriteFile(h.path, []byte(strings.Replace(h.Content, "\r", "", -1)), os.ModePerm)
|
||||
}
|
||||
|
||||
// ListHooks returns a list of Git hooks of given repository.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue