From 92408eb6e651efa07db2a486e7b4928f8252ab63 Mon Sep 17 00:00:00 2001 From: Jason Morley Date: Wed, 11 Oct 2023 09:35:30 -1000 Subject: [PATCH] ci: Ensure removing non-existent private keys fails cleanly --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index eb7e0ce..e775662 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -113,7 +113,7 @@ function cleanup { cd "$ROOT_DIRECTORY" build-tools delete-keychain "$KEYCHAIN_PATH" rm -rf "$TEMPORARY_DIRECTORY" - rm -r ~/.appstoreconnect/private_keys + rm -rf ~/.appstoreconnect/private_keys } trap cleanup EXIT