Skip to content

Commit

Permalink
Do not check for interactive session to shut down dev server (#8845)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremywadsack committed May 4, 2020
1 parent 99f1b6b commit 2975939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ checkBrowsers(paths.appPath, isInteractive)
});
});

if (isInteractive || process.env.CI !== 'true') {
if (process.env.CI !== 'true') {
// Gracefully exit when stdin ends
process.stdin.on('end', function() {
devServer.close();
Expand Down

0 comments on commit 2975939

Please sign in to comment.