fix: ci
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-12 20:05:27 +02:00
committed by Kasper Juul Hermansen
parent e1428a8fbb
commit 776db7274a
7 changed files with 24 additions and 220 deletions

View File

@@ -8,7 +8,9 @@ pub async fn main() -> eyre::Result<()> {
let dag = dagger_rust::source::RustSource::new(client.clone());
let (_src, _rust_src) = dag.get_rust_src(None::<PathBuf>, crates).await?;
let _full_src = dag.get_rust_target_src(client.container(), crates).await?;
let _full_src = dag
.get_rust_target_src(&PathBuf::from("."), client.container(), crates)
.await?;
Ok(())
}