mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
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
This commit is contained in:
parent
3d1be6ecc6
commit
2765cefa1e
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user