From 4bb52bd94701668e1939f431a94a6eae97f0dda0 Mon Sep 17 00:00:00 2001 From: Carlos Hernandez Date: Thu, 28 Sep 2017 08:05:19 -0600 Subject: [PATCH] gnupg no longer needs to be installed on macos --- .ci/before_script.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/before_script.sh b/.ci/before_script.sh index 6edf19c8..c539749c 100644 --- a/.ci/before_script.sh +++ b/.ci/before_script.sh @@ -19,7 +19,8 @@ function install_ansible { # Mac: if [[ "$GITSECRET_DIST" == "brew" ]]; then - brew install gnupg + gnupg_installed="$(brew list | grep -c "gnupg")" + [[ "$gnupg_installed" -ge 1 ]] || brew install gnupg brew install gawk fi