From cfb65827d8588f703f644307451c7662d27d0328 Mon Sep 17 00:00:00 2001 From: Dennis Shen Date: Thu, 11 Jan 2024 17:13:39 +0000 Subject: [PATCH] aconfig: update cache arg to support multiple cache files Bug: b/312243587 Test: atest aconfig.test Change-Id: I6f5f9b5ca6e2a60b8aac9ea8bf3032b00b7af7da --- tools/aconfig/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aconfig/src/main.rs b/tools/aconfig/src/main.rs index 6c4e2416a1..7d719f0c4d 100644 --- a/tools/aconfig/src/main.rs +++ b/tools/aconfig/src/main.rs @@ -135,7 +135,7 @@ fn cli() -> Command { .required(true) .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)), ) }