Skip to content

Commit 1f58173

Browse files
authored
ci: don't rebuild when running dev-server (#8874)
1 parent c792a33 commit 1f58173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/dev-server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ function watchAll() {
8585
var filesWritten = false;
8686

8787
Promise.resolve().then(function () {
88-
if (process.env.TRAVIS) {
89-
return; // don't bother rebuilding in Travis; we already built
88+
if (process.env.CI) {
89+
return; // don't bother rebuilding in CI; we already built
9090
}
9191
return Promise.all([
9292
rebuildPouch(),

0 commit comments

Comments
 (0)