Write the current view to disk.
(&self, view: &str)
| 699 | |
| 700 | /// Write the current view to disk. |
| 701 | fn write_current_view(&self, view: &str) -> Result<(), RepositoryError> { |
| 702 | let current_path = self.dot_dir.join("current_view"); |
| 703 | std::fs::write(¤t_path, view)?; |
| 704 | Ok(()) |
| 705 | } |
| 706 | |
| 707 | /// Get the path where a change file should be stored. |
| 708 | /// |
no test coverage detected