diff options
Diffstat (limited to 'pkg/git/git.go')
| -rw-r--r-- | pkg/git/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/git/git.go b/pkg/git/git.go index 29ebcbadc..a3bdcec00 100644 --- a/pkg/git/git.go +++ b/pkg/git/git.go @@ -52,7 +52,7 @@ func clone(dir, repo, branch string) error { if err := os.RemoveAll(dir); err != nil { return fmt.Errorf("failed to remove repo dir: %v", err) } - if err := os.MkdirAll(dir, 0700); err != nil { + if err := osutil.MkdirAll(dir); err != nil { return fmt.Errorf("failed to create repo dir: %v", err) } args := []string{ |
