change output file extension (config.txt -> config.json)
This is causing some build errors because the config.json file isn't associated with a rule (because the rule looks for .txt). Test: ran locally, checked output directory Bug: 142551000 Change-Id: Idcdb226fa2d23055a8850b2a0545202921edc3b1
This commit is contained in:
@@ -149,7 +149,7 @@ func (fuzz *fuzzBinary) install(ctx ModuleContext, file android.Path) {
|
||||
}
|
||||
|
||||
if fuzz.Properties.Fuzz_config != nil {
|
||||
configPath := android.PathForModuleOut(ctx, "config").Join(ctx, "config.txt")
|
||||
configPath := android.PathForModuleOut(ctx, "config").Join(ctx, "config.json")
|
||||
ctx.Build(pctx, android.BuildParams{
|
||||
Rule: android.WriteFile,
|
||||
Description: "fuzzer infrastructure configuration",
|
||||
|
Reference in New Issue
Block a user