From 2b72636b5aa6df64f56cb8aef48b8c860e599a7a Mon Sep 17 00:00:00 2001 From: Vishwas Siravara Date: Mon, 25 Sep 2023 14:46:06 -0700 Subject: [PATCH] fix CreateFilePathInHome helper Signed-off-by: Vishwas Siravara --- ffs/create.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/ffs/create.go b/ffs/create.go index 9772581..2e06a94 100644 --- a/ffs/create.go +++ b/ffs/create.go @@ -77,8 +77,6 @@ func CreateFilePathInHome(dirPath string) string { homeDir, err := os.UserHomeDir() gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) fullPath := filepath.Join(homeDir, dirPath) - err = os.MkdirAll(fullPath, 0o740) - gomega.Expect(err).ShouldNot(gomega.HaveOccurred()) return fullPath }