Skip to content

Commit

Permalink
Fix lint in create.go
Browse files Browse the repository at this point in the history
Signed-off-by: Vishwas Siravara <siravara@amazon.com>
  • Loading branch information
vsiravar committed May 26, 2023
1 parent 148330e commit 30f8954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffs/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func CreateNestedDir(dirPath string) string {
homeDir, err := os.UserHomeDir()
gomega.Expect(err).ShouldNot(gomega.HaveOccurred())
fullPath := filepath.Join(homeDir, dirPath)
err = os.MkdirAll(fullPath, 0755)
err = os.MkdirAll(fullPath, 0o755)
gomega.Expect(err).ShouldNot(gomega.HaveOccurred())
return fullPath
}
Expand Down

0 comments on commit 30f8954

Please sign in to comment.