go/base: Do not ignore f.Close error

This commit is contained in:
Cyrill Schumacher 2018-05-04 08:22:54 +02:00
parent 2b69a5d53e
commit c6a6a533a1

View File

@ -40,10 +40,9 @@ func FileExists(fileName string) bool {
func TouchFile(fileName string) error {
f, err := os.OpenFile(fileName, os.O_APPEND|os.O_CREATE, 0755)
if err != nil {
return (err)
return err
}
defer f.Close()
return nil
return f.Close()
}
// StringContainsAll returns true if `s` contains all non empty given `substrings`