Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/sh | |
| 2 | |
| 3 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 4 # Use of this source code is governed by a BSD-style license that can be | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 set -e | |
| 8 | |
| 9 rm -rf out | |
| 10 mkdir out | |
| 11 | |
| 12 echo "Generating keychain" | |
| 13 ./generate-keychain.sh $PWD/out/multi-root.keychain --untrusted \ | |
| 14 ../certificates/multi-root*-by-*.pem | |
| 15 | |
| 16 echo "Copying outputs" | |
| 17 cp out/multi-root.keychain ../certificates | |
| OLD | NEW |