We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18074ea commit 3d1daffCopy full SHA for 3d1daff
world/tmpdir.go
@@ -10,7 +10,7 @@ func TempDir(prefix string) string {
10
tmpDir, err := os.MkdirTemp(os.TempDir(), prefix)
11
Expect(err).NotTo(HaveOccurred())
12
13
- err = os.Chmod(tmpDir, 0777)
+ err = os.Chmod(tmpDir, 0755)
14
15
16
return tmpDir
@@ -20,7 +20,7 @@ func TempDirWithParent(parentDir string, prefix string) string {
20
tmpDir, err := os.MkdirTemp(parentDir, prefix)
21
22
23
24
25
26
0 commit comments