- fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
- println!("Publish Archive: {:?}!", input);
- return Ok(())
+ fn execute(
+ &self,
+ input: Option<&String>,
+ configuration: &Configuration,
+ _: &str,
+ ) -> Result<()> {
+ let input = input.ok_or_else(|| {
+ Error::new(Other, "You must provide a location to publish the archive")
+ })?;
+
+ Command::new(COMMAND)
+ .arg("--version")
+ .stdout(Stdio::null())
+ .stderr(Stdio::null())
+ .status()
+ .map_err(|_| Error::new(Other, "Publishing requires rsync"))?;
+
+ Command::new(COMMAND)
+ .arg("-r")
+ .arg(format!(
+ "{}/",
+ &configuration.archive_output_directory.display()
+ ))
+ .arg(input.as_str())
+ .stdout(Stdio::null())
+ .stderr(Stdio::null())
+ .status()
+ .map_err(|_| Error::new(Other, "Rsync failed to publish."))?;
+ Ok(())