Work around that 'make-key' has rc 1 on success.

The 'make_key' script returns rc 1 on both failure and success, so work
around by ignoring exit code from that script.
This commit is contained in:
Simon Josefsson 2017-03-04 08:29:19 +01:00 committed by Wolfgang Wiedmeyer
parent 4971a943eb
commit 1ad1f1a341
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ generate_keys () {
mkdir $KEY_DIR
for x in releasekey platform shared media; do \
./development/tools/make_key $KEY_DIR/$x "$SUBJECT"; \
./development/tools/make_key $KEY_DIR/$x "$SUBJECT" || true; \
done
}