From 53bdd49a1a1df84d31bdd7da92cfbb5282ab1cbd Mon Sep 17 00:00:00 2001 From: CircleCI Deploy script Date: Tue, 3 Oct 2017 17:36:33 -0400 Subject: [PATCH] Unset $CI so the warnings != errors when building Workaround for https://github.com/facebookincubator/create-react-app/issues/2453 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a597aa..6c92022 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,6 +37,6 @@ jobs: - run: timeout 10s npm test || echo "Facebook needs to fix https://github.com/facebookincubator/create-react-app/issues/3147" - deploy: name: Maybe Deploy - command: "npm run build && cd .circleci && ./gh-pages-deploy.sh" + command: "CI="" npm run build && cd .circleci && ./gh-pages-deploy.sh"