refactor(gofumpt): run gofumpt over the code

This commit is contained in:
Gusted 2021-08-03 20:38:53 +02:00 committed by Max Mazurov
parent 32b75262ad
commit b8d8ca6301
30 changed files with 52 additions and 61 deletions

View file

@ -232,7 +232,7 @@ func InitDirs() error {
}
func ensureDirectoryWritable(path string) error {
if err := os.MkdirAll(path, 0700); err != nil {
if err := os.MkdirAll(path, 0o700); err != nil {
return err
}