]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/update.rs
Add status command
[rbdr/blog] / src / command / update.rs
index d25109365a189a4a8bdaeba571f099dd38903276..0a0211cbae485729691120850c88dca78c01a4f9 100644 (file)
@@ -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<Box<dyn super::Command>> {
-        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<Box<dyn super::Command>> {
-        vec![]
+        vec![
+            Box::new(Generate::new()),
+            Box::new(SyncUp::new())
+        ]
     }
 
     fn command(&self) -> &'static str {