Other: go mod tidy/goimports/gofumpt after rebase on devel

This commit is contained in:
James Houlahan
2022-10-28 10:13:34 +02:00
parent 82987a1835
commit a553ced979
10 changed files with 21 additions and 16 deletions

View File

@ -141,7 +141,7 @@ func getGluonDir(encVault *vault.Vault) (string, error) {
}
if !exists {
if err := os.MkdirAll(encVault.GetGluonDir(), 0700); err != nil {
if err := os.MkdirAll(encVault.GetGluonDir(), 0o700); err != nil {
return "", fmt.Errorf("failed to create gluon dir: %w", err)
}
}