rust: Remove unnecessary escaping in grep call
Replicate cfeec1c2dd
in the Clippy rule.
Bug: 333445551
Change-Id: I84134569af0f28730a483f091e6da4c78de83b9c
This commit is contained in:
parent
2aee601e95
commit
91c74762f8
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ var (
|
|||
// Use the metadata output as it has the smallest footprint.
|
||||
"--emit metadata -o $out --emit dep-info=$out.d.raw $in ${libFlags} " +
|
||||
"$rustcFlags $clippyFlags" +
|
||||
" && grep \"^$out:\" $out.d.raw > $out.d",
|
||||
" && grep ^$out: $out.d.raw > $out.d",
|
||||
CommandDeps: []string{"$clippyCmd"},
|
||||
Deps: blueprint.DepsGCC,
|
||||
Depfile: "$out.d",
|
||||
|
|
Loading…
Reference in a new issue