Skip to content

Commit 562ee26

Browse files
committed
Don't run scripts with --console through the manager.
1 parent d22a2c6 commit 562ee26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/manager.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Process.prototype.onExit = function( code ) {
2323
}
2424
};
2525

26-
new Process( "update-server.js", "--console" );
27-
new Process( "wordpress-update.js", "--console" );
28-
new Process( "retry.js", "--console" );
26+
new Process( "update-server.js" );
27+
new Process( "wordpress-update.js" );
28+
new Process( "retry.js" );
2929

3030
// Let SIGINT pass through to spawned processes. When all children exit,
3131
// the manager will end on its own.

0 commit comments

Comments
 (0)