We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2c049e commit e9e53f9Copy full SHA for e9e53f9
lib/commands/update.js
@@ -64,7 +64,7 @@ class UpdateCommand extends Command {
64
skip: (ctx) => !ctx.instance.running,
65
task: () => {
66
return this.runCommand(StopCommand, {quiet: true}).catch((error) => {
67
- if (!(error instanceof errors.SystemError) || !error.message.match(/Nu running Ghost instance/)) {
+ if (!(error instanceof errors.SystemError) || !error.message.match(/No running Ghost instance/)) {
68
return Promise.reject(error);
69
}
70
});
0 commit comments