style: gofumpt all the things (#9829)
Literally `gofumpt -w .` from the top level dir. Guaranteed to be minor style changes only and nothing else. @imsodin per request?
This commit is contained in:
@@ -198,7 +198,7 @@ func (f *BasicFilesystem) Remove(name string) error {
|
||||
err = os.Remove(name)
|
||||
if os.IsPermission(err) {
|
||||
// Try to remove the read-only attribute and try again
|
||||
if os.Chmod(name, 0600) == nil {
|
||||
if os.Chmod(name, 0o600) == nil {
|
||||
err = os.Remove(name)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user