R3H7D42UZ446V5TO2574BMAQQAYYJPEIMSZVDPAGVIYU2COJSWBAC
working_copy.record_prefixes(txn, channel, changes, &mut state, repo_path, prefixes)?;
for p in prefixes.iter() {
let result = working_copy.record_prefix(txn, channel, changes, &mut state, repo_path, p);
if let Err(e) = result {
match e.downcast() {
Ok(libpijul::Error::FileNotInRepo { .. }) => {}
Ok(e) => return Err(e.into()),
Err(e) => return Err(e),
}
}
}