(&self, package: &Package)
| 265 | } |
| 266 | |
| 267 | pub fn build(&self, package: &Package) -> Result<Output> { |
| 268 | let output = self |
| 269 | .get_build_cmd(package) |
| 270 | .stderr(Stdio::inherit()) |
| 271 | .output()?; |
| 272 | Ok(output) |
| 273 | } |
| 274 | |
| 275 | // /Applications/MAMP/htdocs/FireDBG.for.Rust.Internal/parser/tests/example-workspace/target/debug/main-one |
| 276 | pub fn get_binary_path(&self, workspace: &Workspace) -> String { |
no test coverage detected