Merge pull request #16830 from Microsoft/10662-refixdownload
Windows: Regression re-fix builder
This commit is contained in:
commit
a8175b751c
|
|
@ -236,7 +236,7 @@ func (b *Builder) download(srcURL string) (fi builder.FileInfo, err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
path := u.Path
|
path := filepath.FromSlash(u.Path) // Ensure in platform semantics
|
||||||
if strings.HasSuffix(path, string(os.PathSeparator)) {
|
if strings.HasSuffix(path, string(os.PathSeparator)) {
|
||||||
path = path[:len(path)-1]
|
path = path[:len(path)-1]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue