From 0524b2e0bfe60984477df8031cd21caa4f2b4dad Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 25 Nov 2023 12:48:57 +0100 Subject: [PATCH] feat: fix name Signed-off-by: kjuulh --- crates/dagger-rust/src/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/dagger-rust/src/build.rs b/crates/dagger-rust/src/build.rs index 8329372..20717d2 100644 --- a/crates/dagger-rust/src/build.rs +++ b/crates/dagger-rust/src/build.rs @@ -46,7 +46,7 @@ impl RustBuild { .with_exec(vec!["apt", "update"]) .with_exec(vec!["wget", "https://github.com/rui314/mold/releases/latest/download/mold-2.3.3-x86_64-linux.tar.gz"]) .with_exec("tar -xvf mold-2.3.3-x86_64-linux.tar.gz".split_whitespace().collect()) - .with_exec("mv mold /usr/bin/mold".split_whitespace().collect()) + .with_exec("mv mold-2.3.3-x86_64-linux /usr/bin/mold".split_whitespace().collect()) .with_exec(deps); let target_cache = self.client.cache_volume(format!(