Merge pull request #324 from projectdiscovery/fix-file-overrite
Fixed version file overrite issue with garbage during updatesmaster
commit
9ac39687a8
|
@ -83,7 +83,7 @@ func CheckConfigExists(configPath string) bool {
|
||||||
|
|
||||||
// MarshalWrite writes the marshaled yaml config to disk
|
// MarshalWrite writes the marshaled yaml config to disk
|
||||||
func (c *ConfigFile) MarshalWrite(file string) error {
|
func (c *ConfigFile) MarshalWrite(file string) error {
|
||||||
f, err := os.OpenFile(file, os.O_WRONLY|os.O_CREATE, 0755)
|
f, err := os.OpenFile(file, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0755)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue