Skip to content

Commit

Permalink
added --force flag to delete functions in circleci see: firebase/fire…
Browse files Browse the repository at this point in the history
…base-tools#877

see the github thread for more context: firebase/firebase-tools#877
  • Loading branch information
ademidun committed Aug 10, 2019
1 parent 02ccb5f commit 1b8997b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -118,10 +118,10 @@ jobs:
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
echo 'deploying to prod';
/tmp/node_modules/.bin/firebase deploy --token=$FIREBASE_DEPLOY_TOKEN -P default
/tmp/node_modules/.bin/firebase deploy --force --token=$FIREBASE_DEPLOY_TOKEN -P default
else
echo 'deploying to staging';
/tmp/node_modules/.bin/firebase deploy --token=$FIREBASE_DEPLOY_TOKEN -P staging
/tmp/node_modules/.bin/firebase deploy --force --token=$FIREBASE_DEPLOY_TOKEN -P staging
fi
workflows:
Expand Down

0 comments on commit 1b8997b

Please sign in to comment.