Runs the given command in the current working directory.
(String cmd)
| 128 | |
| 129 | /** Runs the given command in the current working directory. */ |
| 130 | public static Result runCmd(String cmd) throws IOException { |
| 131 | return runCmd(new File(System.getProperty("user.dir")), cmd); |
| 132 | } |
| 133 | |
| 134 | /** Runs the given command in the given directory. */ |
| 135 | public static Result runCmd(File directory, String cmd) throws IOException { |
no test coverage detected