Line data Source code
1 : use anyhow::Context;
2 : use camino::Utf8Path;
3 :
4 : use super::s3_uri::S3Uri;
5 :
6 0 : pub(crate) async fn sync(local: &Utf8Path, remote: &S3Uri) -> anyhow::Result<()> {
7 0 : let mut builder = tokio::process::Command::new("aws");
8 0 : builder
9 0 : .arg("s3")
10 0 : .arg("sync")
11 0 : .arg(local.as_str())
12 0 : .arg(remote.to_string());
13 0 : let st = builder
14 0 : .spawn()
15 0 : .context("spawn aws s3 sync")?
16 0 : .wait()
17 0 : .await
18 0 : .context("wait for aws s3 sync")?;
19 0 : if st.success() {
20 0 : Ok(())
21 : } else {
22 0 : Err(anyhow::anyhow!("aws s3 sync failed"))
23 : }
24 0 : }
|