Skip to content

Commit

Permalink
aws: update goldens (#3460)
Browse files Browse the repository at this point in the history
  • Loading branch information
vangent authored Aug 8, 2024
1 parent 60313ac commit a9a92f8
Show file tree
Hide file tree
Showing 477 changed files with 19,945 additions and 20,358 deletions.
3 changes: 3 additions & 0 deletions blob/s3blob/s3blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,9 @@ func escapeKey(key string) string {
// For "../", escape the trailing slash.
case i > 1 && c == '/' && r[i-1] == '.' && r[i-2] == '.':
return true
// Escape \.
case c == '\\':
return true
}
return false
})
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a9a92f8

Please sign in to comment.