Skip to content

Commit 6d2275f

Browse files
Fix --files arg being wrapped in spurious quotes in presubmit.js (#34298)
Resolves brave/brave-browser#53237
1 parent b13403e commit 6d2275f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/commands/scripts/presubmit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function runPresubmit(options) {
5656
}
5757
}
5858
if (options.files) {
59-
args.push('--files', `"${options.files}"`)
59+
args.push('--files', options.files)
6060
}
6161
if (options.verbose) {
6262
args.push(...Array(options.verbose).fill('--verbose'))

0 commit comments

Comments
 (0)