From 92810527ea6900b4810cff690b5cdbaab8114d6e Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 23 Feb 2016 13:22:55 -0500 Subject: [PATCH] closes #4191 --- nodebb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nodebb b/nodebb index d6ceaf1d44..233dbd350f 100755 --- a/nodebb +++ b/nodebb @@ -72,8 +72,9 @@ switch(process.argv[2]) { getRunningPid(function(err, pid) { if (!err) { process.kill(pid, 'SIGHUP'); + process.stdout.write('\nRestarting NodeBB\n'.bold); } else { - process.stdout.write('NodeBB could not be restarted, as a running instance could not be found.'); + process.stdout.write('NodeBB could not be restarted, as a running instance could not be found.\n'); } }); break; @@ -83,7 +84,7 @@ switch(process.argv[2]) { if (!err) { process.kill(pid, 'SIGUSR2'); } else { - process.stdout.write('NodeBB could not be reloaded, as a running instance could not be found.'); + process.stdout.write('NodeBB could not be reloaded, as a running instance could not be found.\n'); } }); break;