diff options
| author | 2024-10-17 22:30:14 +0000 | |
|---|---|---|
| committer | 2024-10-17 22:30:14 +0000 | |
| commit | 5bf2d865a96a30d92c20d20f453db23341f443e4 (patch) | |
| tree | 6e18e3a45f2be371efb58f96b6b30e99848375fa | |
| parent | adba533072b00c53ac0f198c550a3cbd7a00e4cd (diff) | |
| parent | 66ab0787fdec909de3ab8b386e1f0a67ed20e32e (diff) | |
Merge "Make the `container` argument required for the `create-cache` subcommand." into main
| -rw-r--r-- | tools/aconfig/aconfig/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/aconfig/aconfig/src/main.rs b/tools/aconfig/aconfig/src/main.rs index edb4fd373b..e184efed58 100644 --- a/tools/aconfig/aconfig/src/main.rs +++ b/tools/aconfig/aconfig/src/main.rs @@ -51,8 +51,7 @@ fn cli() -> Command { .subcommand( Command::new("create-cache") .arg(Arg::new("package").long("package").required(true)) - // TODO(b/312769710): Make this argument required. - .arg(Arg::new("container").long("container")) + .arg(Arg::new("container").long("container").required(true)) .arg(Arg::new("declarations").long("declarations").action(ArgAction::Append)) .arg(Arg::new("values").long("values").action(ArgAction::Append)) .arg( |