From 8f7a610fb097fcb1e71094293c23be6aa4aa5175 Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Mon, 22 Aug 2022 17:00:12 -0500 Subject: [PATCH] Only try and install aws cli if its not already present, since this is really slow on 10.14 (#13098) --- .github/workflows/build-macos-installers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-macos-installers.yml b/.github/workflows/build-macos-installers.yml index 193c2c1094..0b89863d1c 100644 --- a/.github/workflows/build-macos-installers.yml +++ b/.github/workflows/build-macos-installers.yml @@ -174,7 +174,7 @@ jobs: - name: Install AWS CLI if: steps.check_secrets.outputs.HAS_AWS_SECRET run: | - brew install awscli + command -v aws || brew install awscli - name: Create Checksums run: |