create if file not exists
This commit is contained in:
parent
c314ef54ca
commit
aab908c923
|
|
@ -378,7 +378,7 @@ func (e *Editor) SaveToFile(dstFile string) error {
|
||||||
return fmt.Errorf("nothing changed")
|
return fmt.Errorf("nothing changed")
|
||||||
}
|
}
|
||||||
|
|
||||||
dstHandle, err := os.OpenFile(dstFile, os.O_WRONLY|os.O_TRUNC, 0644)
|
dstHandle, err := os.OpenFile(dstFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue