(&self, path: &Path)
| 132 | |
| 133 | impl FirmwareConfig { |
| 134 | pub fn relative_path(&self, path: &Path) -> PathBuf { |
| 135 | self.path.parent().unwrap_or(Path::new(".")).join(path) |
| 136 | } |
| 137 | |
| 138 | pub fn from_env() -> anyhow::Result<Self> { |
| 139 | // Note: we fallback to trying to find a config file called `FUZZWARE_CONFIG` for |