From 09709661f46c31d96506f419446ae6211eb5380f Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 12 Nov 2018 13:25:50 -0800 Subject: create-dev-keyrings: always export If fetching any changes fails, then the export phase does not run. If there are multiple unrelated key changes, any one of them can be held up by missing on the keyserver. Always run the export, so that we get at least some of the changes out. Signed-off-by: Robin H. Johnson --- create-dev-keyrings.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'create-dev-keyrings.bash') diff --git a/create-dev-keyrings.bash b/create-dev-keyrings.bash index 0afe352..9bc2fde 100755 --- a/create-dev-keyrings.bash +++ b/create-dev-keyrings.bash @@ -37,7 +37,7 @@ grab_keys() { if [[ $(( retries++ )) -gt 3 ]]; then echo "Unable to fetch the following keys:" printf '%s\n' "${missing[@]}" - exit 1 + exit 0 # if we exit non-zero, the entire export will fail fi sleep 5 fi -- cgit v1.2.3-65-gdbad