Skip to content

Commit

Permalink
tests: Fix binary dir permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmood Ali committed May 24, 2019
1 parent 6718871 commit 3e1b136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/shared/executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ func setupRootfsBinary(t *testing.T, rootfs, path string) {
t.Helper()

dst := filepath.Join(rootfs, path)
err := os.MkdirAll(filepath.Dir(dst), 666)
err := os.MkdirAll(filepath.Dir(dst), 0755)
require.NoError(t, err)

src := filepath.Join(
Expand Down

0 comments on commit 3e1b136

Please sign in to comment.