Add newlink to version file

This commit is contained in:
Alexander Neumann 2014-11-15 15:30:54 +01:00
parent 24b4d58bdf
commit f37d0bf45f
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ func CreateLocal(dir string) (*Local, error) {
return nil, err
}
_, err = f.Write([]byte(strconv.Itoa(BackendVersion)))
_, err = f.Write([]byte(fmt.Sprintf("%d\n", BackendVersion)))
if err != nil {
return nil, err
}