From f03d81b0c88c70f0844052c437c42e372fc2834a Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Thu, 25 Jan 2024 19:40:51 +0100 Subject: [PATCH] fix spreading of arguments to externals in toolkit (#11640) as per title, that's just a simple change to avoid the deprecation warning introduced recently and that will be removed in `0.91` --- toolkit.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit.nu b/toolkit.nu index df12b6ab38..bfd1d01a5b 100644 --- a/toolkit.nu +++ b/toolkit.nu @@ -301,7 +301,7 @@ export def "check pr" [ # run Nushell from source with a right indicator export def run [] { - cargo run -- [ + cargo run -- ...[ -e "$env.PROMPT_COMMAND_RIGHT = $'(ansi magenta_reverse)trying Nushell inside Cargo(ansi reset)'" ] }