build.sh/launch: don't immediately exit on error

This commit is contained in:
Starbeamrainbowlabs 2022-03-10 02:49:04 +00:00
parent 5d38a56bed
commit ba33a86ecf
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 3 additions and 3 deletions

View File

@ -77,9 +77,9 @@ task_setup() {
task_launch() {
task_begin "Launching swarm";
terminal_tab "systemquery:agent-a" src/index.mjs agent --config config/test_a.toml;
terminal_tab "systemquery:agent-b" src/index.mjs agent --config config/test_b.toml;
terminal_tab "systemquery:agent-c" src/index.mjs agent --config config/test_c.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" bash -c "src/index.mjs agent --verbose --config config/test_b.toml; read -p 'Press enter to exit....';";
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;
}