Skip to content

Commit

Permalink
Address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh committed Dec 22, 2023
1 parent 03259d8 commit 2aad433
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ public void doGenerate(List<FederateInstance> federates, RtiConfig rtiConfig) {
"wait $RTI || EXITED_SUCCESSFULLY=false",
"for pid in \"${pids[@]}\"",
"do",
" wait $pid || EXITED_SUCCESSFULLY=false",
" wait $pid",
" if [ $? -ne 0 -a $? -ne 127 ]; then",
" EXITED_SUCCESSFULLY=false",
" fi",
"done",
"echo \"All done.\""))
.append("\n");
Expand Down

0 comments on commit 2aad433

Please sign in to comment.