mirror of
https://github.com/sbt/sbt.git
synced 2026-09-04 00:41:32 +02:00
**Problem** In sbt 2.x, if we execute a run task from the shell, and if the program fails, it ends up taking down the entire shell because client-side run rethrows, which is not desirable for the sbt shell. **Solution** 1. Omit printing out success for ClientJobParams, which is the runinfo. 2. Print out success or error on the client-side for shell usage case.