Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db97af4a authored by Kris Alder's avatar Kris Alder
Browse files

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
parent 9f221955
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",