1 2 3 4 5 6 7 8 9
use super::*; pub(crate) fn run(settings: Settings) -> SubcommandResult { let index = Index::open(&settings)?; index.update()?; Ok(None) }