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

Commit 3c4a9159 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "TARGET_FS_CONFIG_GEN is a list, not a single path"

parents 5ac11b74 54879d19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1053,6 +1053,6 @@ func (c *config) ProductHiddenAPIStubsTest() []string {
	return c.productVariables.ProductHiddenAPIStubsTest
}

func (c *deviceConfig) TargetFSConfigGen() *string {
func (c *deviceConfig) TargetFSConfigGen() []string {
	return c.config.productVariables.TargetFSConfigGen
}
+1 −1
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ type productVariables struct {
	ProductHiddenAPIStubsSystem []string `json:",omitempty"`
	ProductHiddenAPIStubsTest   []string `json:",omitempty"`

	TargetFSConfigGen *string `json:",omitempty"`
	TargetFSConfigGen []string `json:",omitempty"`
}

func boolPtr(v bool) *bool {