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

pull/223/head
Tim Robinson 2015-11-24 00:10:39 +00:00
rodzic 3d1be6ecc6
commit 2765cefa1e
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -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) {