Skip to content

Commit 8b4b25d

Browse files
committed
Fix env variable for CircleCI
1 parent d4a977a commit 8b4b25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/config/webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const publicPath = SANDBOX_ONLY || __DEV__ ? '/' : getHost.default() + '/';
2525
let threads = 1;
2626

2727
try {
28-
if (process.env.CIRCLE_CI) {
28+
if (process.env.CIRCLECI) {
2929
threads = 2;
3030
} else {
3131
threads = Math.max(1, require('os').cpus().length - 1);

0 commit comments

Comments
 (0)