feat(ffmpeg): roll FFMPEG to r1005 (#5303)

Drive-By: update `//utils/roll_browser.js` script to support FFMPEG

References #5278
This commit is contained in:
Andrey Lushnikov 2021-02-03 21:15:09 -08:00 committed by GitHub
parent 039e7af05f
commit 3c36322c72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@
}, },
{ {
"name": "ffmpeg", "name": "ffmpeg",
"revision": "1004", "revision": "1005",
"download": true "download": true
} }
] ]

View file

@ -52,7 +52,7 @@ Example:
process.exit(1); process.exit(1);
} }
const browserName = args[0].toLowerCase(); const browserName = args[0].toLowerCase();
if (!['chromium', 'firefox', 'webkit'].includes(browserName)) { if (!['chromium', 'firefox', 'webkit', 'ffmpeg'].includes(browserName)) {
console.log(`Unknown browser "${browserName}"`); console.log(`Unknown browser "${browserName}"`);
console.log(`Try running ${SCRIPT_NAME} --help`); console.log(`Try running ${SCRIPT_NAME} --help`);
process.exit(1); process.exit(1);