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 333fd23 commit 5826001Copy full SHA for 5826001
pkg/agentfs/tar.go
@@ -189,7 +189,7 @@ func UploadTarball(
189
if err != nil {
190
return fmt.Errorf("failed to create tar header for directory %s: %w", path, err)
191
}
192
- header.Name = path + "/"
+ header.Name = util.ToUnixPath(path) + "/"
193
if err := tarWriter.WriteHeader(header); err != nil {
194
return fmt.Errorf("failed to write tar header for directory %s: %w", path, err)
195
0 commit comments