Fix typo in FLUTTER_P12_PASSWORD value

In Xilai's original commit, `FLUTTER_P12_PASSWORD` mapped to
`0325_p12password.encrypted` in the secrets dictionary:
See: https://flutter.googlesource.com/recipes/+/36cb4b548b820aba17a009a5aa3c08e86ad121ef%5E%21/#F0

However, in our re-application of this change, it was mapped to
`0325_p12_password.encrypted`. Note the extra underscore after "p12". This causes a lookup failure during codesigning.
https://flutter.googlesource.com/recipes/+/93c8ef9d56bbc4ff7337339f06d4e83fb2f26ba6%5E%21/

This removes the extra underscore.

Change-Id: Id2aed56152feef3d94fe1c20be90eca98dcf0b8f
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/58580
Reviewed-by: Christopher Fujino <fujino@google.com>
Commit-Queue: Christopher Fujino <fujino@google.com>
5 files changed
tree: 712a34d02eb423eeda3bf6365cdedfbbf6aa187e
  1. infra/
  2. recipe_modules/
  3. recipes/
  4. .gitignore
  5. .style.yapf
  6. AUTHORS
  7. CONTRIBUTING.md
  8. LICENSE
  9. OWNERS
  10. README.md
  11. recipes.py
README.md

Flutter LUCI Recipes

This repository contains Flutter's LUCI recipes. For the LUCI infrastructure config, see flutter/infra. Builds can be found in the Flutter Dashboard.

Supported repositories roll their .ci.yaml into flutter/infra, which updates what properties builds have. For example, flutter config specifies various dependencies the different tests require, which are then used by the flutter_deps recipe_module No modifications to flutter/infra are required to work on the recipes.

Contributing

Please follow instructions on Contributing docs to set up your development environment.