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

Commit 5ab1eb88 authored by Zi Wang's avatar Zi Wang Committed by Gerrit Code Review
Browse files

Merge "Update the way to get output files in license_metadata" into main

parents 68b25945 01201ed2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -45,8 +45,7 @@ func buildLicenseMetadata(ctx ModuleContext, licenseMetadataFile WritablePath) {
	}

	var outputFiles Paths
	if outputFileProducer, ok := ctx.Module().(OutputFileProducer); ok {
		outputFiles, _ = outputFileProducer.OutputFiles("")
	if outputFiles, err := outputFilesForModule(ctx, ctx.Module(), ""); err == nil {
		outputFiles = PathsIfNonNil(outputFiles...)
	}