Skip to content

Commit

Permalink
FIX issue where the block of build info (including url) wouldn't show…
Browse files Browse the repository at this point in the history
… if passed --ci #7821
  • Loading branch information
ndelangen committed Aug 20, 2019
1 parent c57e8f9 commit 0a45c30
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions lib/core/src/server/build-dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,16 +310,19 @@ export async function buildDevStandalone(options) {
warning += managerStats.toJson().warnings.length;

process.exit(warning ? 1 : 0);
} else if (!options.ci) {
outputStartupInformation({
updateInfo,
version,
address,
networkAddress,
managerTotalTime,
previewTotalTime,
});
return;
}

outputStartupInformation({
updateInfo,
version,
address,
networkAddress,
managerTotalTime,
previewTotalTime,
});

if (!options.ci) {
openInBrowser(address);
}
} catch (error) {
Expand Down

0 comments on commit 0a45c30

Please sign in to comment.