Skip to content

Commit

Permalink
fix executor file perm mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagulapuram, SandeepKumar (CCI-Atlanta-CON) committed Mar 10, 2023
1 parent ab178bb commit 44ee58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ func untar(tarPath string, destPath string) error {
continue
}
target := filepath.Join(dest, filepath.Clean(header.Name))
if err := os.MkdirAll(filepath.Dir(target), 0o700); err != nil && os.IsExist(err) {
if err := os.MkdirAll(filepath.Dir(target), 0o755); err != nil && os.IsExist(err) {
return err
}
switch header.Typeflag {
Expand Down

0 comments on commit 44ee58a

Please sign in to comment.