From bf3797c61648f4e939a86f5f4ada7b47bca6e4fe Mon Sep 17 00:00:00 2001 From: Dan G Date: Sat, 5 Aug 2023 20:23:19 +0100 Subject: [PATCH] shfmt fixes --- .github/autobuild/mac.sh | 4 ++-- mac/deploy_mac.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/autobuild/mac.sh b/.github/autobuild/mac.sh index 53ec6623a9..5ed7de0706 100755 --- a/.github/autobuild/mac.sh +++ b/.github/autobuild/mac.sh @@ -68,7 +68,7 @@ prepare_signing() { ## Put the certs to files echo "${MACOS_CERTIFICATE}" | base64 --decode > macos_certificate.p12 - + # If distribution cert is present, set for store signing + submission if [[ -n "${MAC_STORE_APP_CERT}" ]]; then echo "${MAC_STORE_APP_CERT}" | base64 --decode > macapp_certificate.p12 @@ -147,7 +147,7 @@ appstore_submit() { echo "Submitting package to AppStore Connect..." # test the signature of package pkgutil --check-signature "${ARTIFACT_PATH}" - + xcrun notarytool submit "${ARTIFACT_PATH}" \ --apple-id "${NOTARIZATION_USERNAME}" \ --team-id "${APPLE_TEAM_ID}" \ diff --git a/mac/deploy_mac.sh b/mac/deploy_mac.sh index ad0a01d969..f7fff102e5 100755 --- a/mac/deploy_mac.sh +++ b/mac/deploy_mac.sh @@ -124,7 +124,7 @@ build_app() { # move app bundle to prep for dmg creation mv "${build_path}/${target_name}.app" "${deploy_path}" - + # Cleanup make -f "${build_path}/Makefile" -C "${build_path}" distclean