We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df6926 commit dc5b6dfCopy full SHA for dc5b6df
1 file changed
cli/commands/setup/nginx.js
@@ -92,7 +92,13 @@ class NginxCommand extends Command {
92
})
93
94
executeCommands.stderr.on('data', (data) => {
95
- this.error(chalk.red(data.toString()))
+ const errorMessage = data.toString()
96
+
97
+ if (errorMessage.includes('signal process started')) {
98
+ this.log(chalk.green('Nginx reload notice: signal process started'))
99
+ } else {
100
+ this.error(chalk.red(errorMessage))
101
+ }
102
103
104
executeCommands.on('close', async (code) => {
0 commit comments