| 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 set -x |
| 9 |
| 10 rm -rf out |
| 11 mkdir out |
| 12 |
| 13 echo "Generating keychain" |
| 14 ./generate-keychain.sh $PWD/out/client_1.keychain \ |
| 15 --import "../certificates/client_1.pem" "../certificates/client_1.key" |
| 16 ./generate-keychain.sh $PWD/out/client_1_ca.keychain \ |
| 17 --untrusted "../certificates/client_1_ca.pem" |
| 18 |
| 19 echo "Copying outputs" |
| 20 cp out/client_1.keychain ../certificates |
| 21 cp out/client_1_ca.keychain ../certificates |
| 22 |
| OLD | NEW |