Linting fixes

This commit is contained in:
Gregory Kurtzer
2021-09-08 20:37:58 -07:00
parent 4b5e3fd6eb
commit f9b9c3a8c1
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ func (c *Cache) checkEntry(id string) (string, error) {
func (c *Cache) createEntry(id string) (string, error) {
path := filepath.Join(c.rootfsDir(), id)
if err := os.MkdirAll(path, 755); err != nil {
if err := os.MkdirAll(path, 0755); err != nil {
return "", err
}