X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/442ebaf901a8ca686ce769325054e1f393d43b7c..5f81d796fed4e4efbaf6dbed7d3c69481afddeb3:/src/command/update.rs diff --git a/src/command/update.rs b/src/command/update.rs index d251093..0a0211c 100644 --- a/src/command/update.rs +++ b/src/command/update.rs @@ -1,4 +1,5 @@ use std::io::Result; +use super::{sync_down::SyncDown, generate::Generate, sync_up::SyncUp}; pub struct Update; @@ -10,7 +11,7 @@ impl Update { impl super::Command for Update { fn before_dependencies(&self) -> Vec> { - vec![] + vec![Box::new(SyncDown::new())] } fn execute(&self, input: Option<&String>) -> Result<()> { @@ -19,7 +20,10 @@ impl super::Command for Update { } fn after_dependencies(&self) -> Vec> { - vec![] + vec![ + Box::new(Generate::new()), + Box::new(SyncUp::new()) + ] } fn command(&self) -> &'static str {