From 3a160547e026a7e87f36d92f65b8182ac5e4446b Mon Sep 17 00:00:00 2001 From: Guilhem Fanton Date: Fri, 25 Jan 2019 16:06:36 +0100 Subject: [PATCH] fix(circle): fix set name will never failed again --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d0070325ea..dce6d9d66c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -303,7 +303,7 @@ jobs: - run: name: set name command: | - [[ ! -z "${CIRCLE_PR_NUMBER}" ]] && echo "export ANDROID_CUSTOM_NAME='Berty @${CIRCLE_PR_NUMBER}'" >> $BASH_ENV + [[ ! -z "${CIRCLE_PR_NUMBER}" ]] && echo "export ANDROID_CUSTOM_NAME='Berty @${CIRCLE_PR_NUMBER}'" >> $BASH_ENV || true - run: name: build app @@ -437,7 +437,7 @@ jobs: name: build app working_directory: ~/go/src/berty.tech/client/react-native command: | - [[ ! -z "${CIRCLE_PR_NUMBER}" ]] && IOS_CUSTOM_NAME="Berty @${CIRCLE_PR_NUMBER}" make appname.ios + [[ ! -z "${CIRCLE_PR_NUMBER}" ]] && IOS_CUSTOM_NAME="Berty @${CIRCLE_PR_NUMBER}" make appname.ios || true make fastlane.setup_circle /tmp/retry -m 3 make fastlane.ios.adhoc