Skip to content

Commit

Permalink
fix if syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
punchdrunker committed Dec 31, 2017
1 parent 150f6e9 commit e9739e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- run:
name: decrypt keystore
command: |
if [$CIRCLE_BRANCH = 'master']; then
if [ $CIRCLE_BRANCH = 'master' ]; then
openssl aes-256-cbc -k $KEYSTORE_DECRYPT_PASSWORD -d -in encrypted-droidkaigi-key -out release.keystore
fi
- run:
name: decrypt json
command: |
if [$CIRCLE_BRANCH = 'master']; then
if [ $CIRCLE_BRANCH = 'master' ]; then
openssl aes-256-cbc -k $JSON_DECRYPT_PASSWORD -d -in encrypted-google-services.json -out app/google-services.json
fi
- run:
Expand All @@ -44,7 +44,7 @@ jobs:
- run:
name: Build
command: |
if [$CIRCLE_BRANCH = 'master']; then
if [ $CIRCLE_BRANCH = 'master' ]; then
./gradlew --offline --stacktrace assembleRelease
else
./gradlew --offline --stacktrace assemble${APP_BUILD_TYPE^}
Expand Down

0 comments on commit e9739e4

Please sign in to comment.