Merge "aconfig: update cache arg to support multiple cache files" into main am: 45db966e90 am: c92f754bb5

Original change: https://android-review.googlesource.com/c/platform/build/+/2907195

Change-Id: Ie189bcecf2eeabb57b8a2d10f5e88c87434bfde0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2024-01-12 16:19:28 +00:00
committed by Automerger Merge Worker

View File

@@ -135,7 +135,7 @@ fn cli() -> Command {
.required(true) .required(true)
.help("The target container for the generated storage file."), .help("The target container for the generated storage file."),
) )
.arg(Arg::new("cache").long("cache").required(true)) .arg(Arg::new("cache").long("cache").action(ArgAction::Append).required(true))
.arg(Arg::new("out").long("out").required(true)), .arg(Arg::new("out").long("out").required(true)),
) )
} }