-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to launch processes with a working directory (#741)
* Add overloads of Processes#launch and ProcessHelper#launch that accept a File representing the working directory and a List that contains the command. Did not overload the launch methods that accept varargs because there can be ambiguity as to which method is called. For example, launch(null, "git", "status") is ambiguous since both launch(String...) and launch(File, String...) can apply and that would force ugly casts, etc. * Update javadocs for Processes#waitForExit noting that we do not destroy the Process if the timeout occurs before the process exits Closes #739
- Loading branch information
1 parent
3525938
commit a023f4e
Showing
3 changed files
with
111 additions
and
12 deletions.
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
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