-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
--as-job-runner
: With this flag hivemind will let processes exi…
…t gracefully, and wait for all to complete Example: ```shellsession hivemind --as-job-runner --exit-with-highest-exit-code - <<PROCFILE job1: echo "job1 is running"; sleep 0.5; echo "Done" job2: echo "job2 is running"; sleep 1; echo "Done" PROCFILE hivemind --as-job-runner --exit-with-highest-exit-code - <<PROCFILE job1: echo "job1 is running"; sleep 0.5; echo "Fail"; exit 13 job2: echo "job2 is running"; sleep 1; echo "Done" PROCFILE ```
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters