Merge "Don't use "echo -e" when creating prop file"

This commit is contained in:
Treehugger Robot
2021-01-26 23:47:46 +00:00
committed by Gerrit Code Review

View File

@@ -146,7 +146,7 @@ func (f *filesystem) buildPropFile(ctx android.ModuleContext) (propFile android.
builder.Command().Text("rm").Flag("-rf").Output(propFile)
for _, p := range props {
builder.Command().
Text("echo").Flag("-e").
Text("echo").
Flag(`"` + p.name + "=" + p.value + `"`).
Text(">>").Output(propFile)
}