From 4dc42d09d0929d71ad347d023d62f5122ce2a8e7 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..8bb2201 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"