FAOGX7G362OSLMKTQLQ3S3XMGKACNRAIV2VRURS5QJRHDF577BHQC
let txn = repo.repo.pristine.arc_txn_begin()?;
if let Some(oid) = repo.current_commit {
let channel = txn.read().load_channel(&format!("{}", oid))?;
if let Some(channel) = channel {
libpijul::output::output_repository_no_pending(
&libpijul::working_copy::FileSystem::from_root(&repo.repo.path),
&repo.repo.changes,
&txn,
&channel,
"",
false,
None,
num_cpus::get(),
0,
)?;
}
}