disable component updates by setting --component-updater to invalid URL (#413)

Currently, Brave will attempt an automatic update of components on
launch. This should prevent that.
This commit is contained in:
Ilya Kreymer 2023-10-20 16:28:22 -07:00 committed by GitHub
parent 9ae297c000
commit f6d5a019b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -359,5 +359,6 @@ export const defaultArgs = [
"--use-mock-keychain",
// See https://chromium-review.googlesource.com/c/chromium/src/+/2436773
"--no-service-autorun",
"--export-tagged-pdf"
"--export-tagged-pdf",
"--component-updater=url-source=http://invalid.dev/",
];