Skip to content

Commit

Permalink
fix(circle): fix set name will never failed again
Browse files Browse the repository at this point in the history
  • Loading branch information
gfanton committed Jan 25, 2019
1 parent e4ca4bf commit 3a16054
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3a16054

Please sign in to comment.