Skip to content

Commit

Permalink
feat(ffmpeg): roll FFMPEG to r1005 (#5303)
Browse files Browse the repository at this point in the history
Drive-By: update `//utils/roll_browser.js` script to support FFMPEG

References #5278
  • Loading branch information
aslushnikov committed Feb 4, 2021
1 parent 039e7af commit 3c36322
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browsers.json
Expand Up @@ -18,7 +18,7 @@
},
{
"name": "ffmpeg",
"revision": "1004",
"revision": "1005",
"download": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion utils/roll_browser.js
Expand Up @@ -52,7 +52,7 @@ Example:
process.exit(1);
}
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(`Try running ${SCRIPT_NAME} --help`);
process.exit(1);
Expand Down

0 comments on commit 3c36322

Please sign in to comment.