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 6b76ece commit cc8e24dCopy full SHA for cc8e24d
internal/benchrunner/runners/rally/runner.go
@@ -692,7 +692,7 @@ func (r *runner) runGenerator(destDir string) error {
692
693
if r.options.RallyTrackOutputDir != "" {
694
r.persistRallyTrackHandler = func() error {
695
- err := os.MkdirAll(r.options.RallyTrackOutputDir, os.ModePerm)
+ err := os.MkdirAll(r.options.RallyTrackOutputDir, 0755)
696
if err != nil {
697
return fmt.Errorf("cannot not create rally track output dir: %w", err)
698
}
0 commit comments