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

Commit 1fb7d7d5 authored by David Pursell's avatar David Pursell Committed by Gerrit Code Review
Browse files

Merge "avb_add_hash_footer: fix rollback_index format" into main

parents 4ebab14f 0ebba613
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ func (a *avbAddHashFooter) GenerateAndroidBuildActions(ctx android.ModuleContext
		if rollbackIndex < 0 {
			ctx.PropertyErrorf("rollback_index", "Rollback index must be non-negative")
		}
		cmd.Flag(fmt.Sprintf(" --rollback_index %x", rollbackIndex))
		cmd.Flag(fmt.Sprintf(" --rollback_index %d", rollbackIndex))
	}

	cmd.FlagWithOutput("--image ", a.output)