We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8df19d commit a8b9121Copy full SHA for a8b9121
tools/prepublish.ts
@@ -60,12 +60,12 @@ async function main() {
60
}
61
);
62
63
- await extractAsync('https://github.com/google/protobuf/archive/master.zip', {
+ await extractAsync('https://github.com/google/protobuf/archive/main.zip', {
64
strip: 2,
65
filter: file => {
66
return (
67
- file.parent.indexOf('protobuf-master') === 0 &&
68
- file.parent.indexOf('protobuf-master/src/') === 0 &&
+ file.parent.indexOf('protobuf-main') === 0 &&
+ file.parent.indexOf('protobuf-main/src/') === 0 &&
69
file.parent.indexOf('/internal') === -1 &&
70
file.filename.indexOf('unittest') === -1 &&
71
file.filename.indexOf('test') === -1
0 commit comments