From 2765cefa1ea08dfde857c723da71a7edd7994ff4 Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Tue, 24 Nov 2015 00:10:39 +0000 Subject: [PATCH] Make Cloud9 output code when it's done loading. Use pkill instead of killall as it returns 0 return code when there are no processes --- server.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 5616c5ac..48483110 100755 --- a/server.js +++ b/server.js @@ -89,7 +89,9 @@ function main(argv, config, onLoaded) { var notDelayed = expanded.filter(function(c) { return delayLoadConfigs.indexOf(c) === -1 }); startConfigs(notDelayed, function() { - startConfigs(delayed, function() {}); + startConfigs(delayed, function() { + console.log("Cloud9 is up and running"); + }); }); function startConfigs(configs, done) {