Differences From Artifact [6d290a2094]:
- Executable file build/builtin-certs-update — part of check-in [2c8ab6e8d0] at 2013-01-15 18:48:43 on branch piv — Updated built-in certs, and added script to rebuild built-in certs (user: rkeene, size: 200) [annotate] [blame] [check-ins using] [more...]
To Artifact [5324a34988]:
- Executable file build/builtin-certs-update — part of check-in [11c30d03cf] at 2015-03-22 06:24:53 on branch trunk — Updated to not update built-in certs file if one of the makes fails (user: rkeene, size: 208) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 |
#! /bin/bash ourdir="$(dirname "$(which "$0")")" cd "${outdir}" || exit 1 make -C certs/dod distclean all make -C certs/federal distclean all ./certs-to-c certs/*/*.crt > ../cackey_builtin_certs.h |
> > |
1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/bash
set -e
ourdir="$(dirname "$(which "$0")")"
cd "${outdir}" || exit 1
make -C certs/dod distclean all
make -C certs/federal distclean all
./certs-to-c certs/*/*.crt > ../cackey_builtin_certs.h
|