build.sh/launch: don't immediately exit on error
This commit is contained in:
parent
5d38a56bed
commit
ba33a86ecf
1 changed files with 3 additions and 3 deletions
6
build.sh
6
build.sh
|
@ -77,9 +77,9 @@ task_setup() {
|
||||||
task_launch() {
|
task_launch() {
|
||||||
task_begin "Launching swarm";
|
task_begin "Launching swarm";
|
||||||
|
|
||||||
terminal_tab "systemquery:agent-a" src/index.mjs agent --config config/test_a.toml;
|
terminal_tab "systemquery:agent-a" bash -c "src/index.mjs agent --verbose --config config/test_a.toml; read -p 'Press enter to exit....';";
|
||||||
terminal_tab "systemquery:agent-b" src/index.mjs agent --config config/test_b.toml;
|
terminal_tab "systemquery:agent-b" bash -c "src/index.mjs agent --verbose --config config/test_b.toml; read -p 'Press enter to exit....';";
|
||||||
terminal_tab "systemquery:agent-c" src/index.mjs agent --config config/test_c.toml;
|
terminal_tab "systemquery:agent-c" bash -c "src/index.mjs agent --verbose --config config/test_c.toml; read -p 'Press enter to exit....';";
|
||||||
|
|
||||||
task_end 0;
|
task_end 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue