summaryrefslogtreecommitdiffstats
path: root/update.go
diff options
context:
space:
mode:
Diffstat (limited to 'update.go')
-rw-r--r--update.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/update.go b/update.go
index aae2e71048..79ce8f524d 100644
--- a/update.go
+++ b/update.go
@@ -32,7 +32,8 @@ gogs serv provide access auth for repositories`,
func newUpdateLogger(execDir string) {
logPath := execDir + "/log/update.log"
os.MkdirAll(path.Dir(logPath), os.ModePerm)
- f, err := os.Open(logPath)
+
+ f, err := os.OpenFile(logPath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, os.ModePerm)
if err != nil {
qlog.Fatal(err)
}