(working_directory: PathBuf)
| 37 | |
| 38 | impl CommandContext { |
| 39 | pub fn new(working_directory: PathBuf) -> Self { |
| 40 | Self { |
| 41 | arguments: Vec::new(), |
| 42 | variables: HashMap::new(), |
| 43 | working_directory, |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | pub fn with_arguments(mut self, args: Vec<String>) -> Self { |
| 48 | self.arguments = args; |
nothing calls this directly
no test coverage detected