Artifact 9fee736440cbb06475ee85e5d8c460e83828a5e2:
- Executable file build/builtin-certs-update — part of check-in [1a5312bdfa] at 2016-02-16 15:24:52 on branch trunk — Fixed typo in script that rebuilds built-in certs causing the files to be placed in the wrong directory (user: rkeene, size: 320) [annotate] [blame] [check-ins using]
#! /bin/bash
set -e
ourdir="$(dirname "$(which "$0")")"
cd "${ourdir}" || exit 1
make -C certs/dod distclean all
make -C certs/federal distclean all
if [ "$1" = '--commercial' ]; then
commercial='commercial'
else
commercial='SKIP'
fi
./certs-to-c certs/{dod,federal,$commercial}/*.crt > ../cackey_builtin_certs.h