Skip to content

Commit 4c9f91f

Browse files
alan-agius4josephperrott
authored andcommitted
fix(ng-dev): remove quotes from bazel query in update-generated-files
The quotes around the query expression caused Bazel to treat it as a target name instead of a query, leading to an error.
1 parent c4d0c37 commit 4c9f91f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ng-dev/misc/generated-files/update-generated-files.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function updateGeneratedFileTargets(): Promise<void> {
2020
getBazelBin(),
2121
[
2222
'query',
23-
`"kind(esbuild, //...) intersect attr(name, '_generated$', //...)"`,
23+
`kind(esbuild, //...) intersect attr(name, '_generated$', //...)`,
2424
'--output',
2525
'label',
2626
],

0 commit comments

Comments
 (0)