We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b6e6f8 commit 771091aCopy full SHA for 771091a
extension/tools/release/release_test.go
@@ -137,6 +137,12 @@ func TestBuildVSCGO(t *testing.T) {
137
want[platform.goos+"_"+platform.goarch] = true
138
}
139
for _, f := range zipReader.File {
140
+ // CL 578415 modifies the behavior of archive/zip.Writer.AddFS regarding
141
+ // writing headers to zip files.
142
+ // See golang/go#66831 for details.
143
+ if f.FileInfo().IsDir() {
144
+ continue
145
+ }
146
dirname := path.Base(path.Dir(f.Name))
147
if !want[dirname] {
148
t.Errorf("unexpected file in zip: %v", f.Name)
0 commit comments