Skip to content

Commit

Permalink
Merge pull request #4825 from profnandaa/fix-4696-normalize-path-func…
Browse files Browse the repository at this point in the history
…tion

 fix: use unix path separator since windows path already normalized
  • Loading branch information
tonistiigi authored Apr 11, 2024
2 parents 549891b + 018155f commit 76c7422
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions frontend/dockerfile/dockerfile2llb/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -1152,10 +1152,6 @@ func dispatchCopy(d *dispatchState, cfg copyConfig) error {
return err
}

if cfg.params.DestPath == "." || cfg.params.DestPath == "" || cfg.params.DestPath[len(cfg.params.DestPath)-1] == filepath.Separator {
dest += string(filepath.Separator)
}

var copyOpt []llb.CopyOption

if cfg.chown != "" {
Expand Down Expand Up @@ -1576,9 +1572,9 @@ func pathRelativeToWorkingDir(s llb.State, p string, platform ocispecs.Platform)
}

if system.IsAbs(p, platform.OS) {
return system.NormalizePath("/", p, platform.OS, false)
return system.NormalizePath("/", p, platform.OS, true)
}
return system.NormalizePath(dir, p, platform.OS, false)
return system.NormalizePath(dir, p, platform.OS, true)
}

func addEnv(env []string, k, v string) []string {
Expand Down
2 changes: 1 addition & 1 deletion solver/llbsolver/file/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func docopy(ctx context.Context, src, dest string, action pb.FileActionCopy, u *
}
destPath, err := cleanPath(action.Dest)
if err != nil {
return errors.Wrap(err, "cleaning path")
return errors.Wrap(err, "cleaning destination path")
}
if !action.CreateDestPath {
p, err := fs.RootPath(dest, filepath.Join("/", action.Dest))
Expand Down

0 comments on commit 76c7422

Please sign in to comment.