dont unwrap name() for RemoteRepo::LocalChannel
Dependencies
- [2]
QU6T6J6WUse the change time in addition to the modified time when detecting untouched files (at least on Unix) - [3]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [4]
76PCXGMLPushing to, and pulling from the local repository - [5]
A3RM526YIntegrating identity malleability - [6]
EAAJNZ3JMake recursive directory removal optional
Change contents
- replacement in pijul/src/remote/mod.rs at line 174
let mut remote = txn.open_or_create_remote(id, self.name().unwrap()).unwrap();let mut remote = if let Some(name) = self.name() {txn.open_or_create_remote(id, name)?} else {return Ok(None);}; - replacement in libpijul/src/working_copy/filesystem.rs at line 344
let ctime = std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_secs(attr.ctime() as u64);let ctime =std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_secs(attr.ctime() as u64);