From 5737ea62fa9b45fde79143f761c7501b566162f9 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 28 Jul 2018 15:58:25 -0400 Subject: [PATCH] fix: use correct syntax --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 51e7b35..a3b6b98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,6 +13,6 @@ jobs: - run: make build - run: command: | - if [ "${CIRCLE_BRANCH}" == "release" ]; then - make release - fi + if [[ "$CIRCLE_BRANCH" == "release" ]]; then + make release + fi