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