making `pijul client` more robust to errors
Dependencies
- [2]
FY6SDCTOReadibility improvements in `pijul client` - [3]
6ARU5AQ7Improving the `pijul client` command: printing the URL + styling the page - [4]
LZOGKBJXnew command `pijul client` for authenticating to a HTTP server
Change contents
- replacement in pijul/src/commands/client.rs at line 81
open::that(&url.to_string())?;open::that(&url.to_string()).unwrap_or(()); - replacement in pijul/src/commands/client.rs at line 97
std::fs::write(&cache_path, &x)?;if let Err(e) = std::fs::write(&cache_path, &x) {log::debug!("Error while writing file {:?}: {:?}", cache_path, e)}