From 7e2338b0173d25cdd8b597f212880dc3949a3a30 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 20 Mar 2026 15:10:54 +0300 Subject: [PATCH] xtask: create `nd` symlink Signed-off-by: NotAShelf Change-Id: I1e3a45059c5cdd443ace1c2f620a8a2a6a6a6964 --- crates/xtask/src/main.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/xtask/src/main.rs b/crates/xtask/src/main.rs index a580cda..4141510 100644 --- a/crates/xtask/src/main.rs +++ b/crates/xtask/src/main.rs @@ -42,6 +42,7 @@ enum Binary { Nr, Ns, Nb, + Nd, Nu, } @@ -51,6 +52,7 @@ impl Binary { Self::Nr => "nr", Self::Ns => "ns", Self::Nb => "nb", + Self::Nd => "nd", Self::Nu => "nu", } } @@ -92,7 +94,8 @@ fn create_multicall_binaries( ); } - let multicall_binaries = [Binary::Nr, Binary::Ns, Binary::Nb, Binary::Nu]; + let multicall_binaries = + [Binary::Nr, Binary::Ns, Binary::Nb, Binary::Nd, Binary::Nu]; let bin_path = Path::new(bin_dir); for binary in multicall_binaries { @@ -155,7 +158,7 @@ fn generate_completions( println!("completion file generated: {}", completion_file.display()); // Create symlinks for multicall binaries - let multicall_names = ["nb", "nr", "ns", "nu"]; + let multicall_names = ["nb", "nd", "nr", "ns", "nu"]; for name in &multicall_names { let symlink_path = output_dir.join(format!("{name}.{shell}")); if symlink_path.exists() {