Fix --files arg being wrapped in spurious quotes in presubmit.js (#34298)
Resolves https://github.com/brave/brave-browser/issues/53237
This commit is contained in:
@@ -56,7 +56,7 @@ function runPresubmit(options) {
|
||||
}
|
||||
}
|
||||
if (options.files) {
|
||||
args.push('--files', `"${options.files}"`)
|
||||
args.push('--files', options.files)
|
||||
}
|
||||
if (options.verbose) {
|
||||
args.push(...Array(options.verbose).fill('--verbose'))
|
||||
|
||||
Reference in New Issue
Block a user