From 22acfe850f57fd9397a2b166738c8ffa7e6d779b Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Thu, 7 Mar 2024 12:22:37 -0600 Subject: [PATCH] fixed extractor script. --- nushell/.config/nushell/scripts/ultimate_extractor.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nushell/.config/nushell/scripts/ultimate_extractor.nu b/nushell/.config/nushell/scripts/ultimate_extractor.nu index c816ad1..7197309 100644 --- a/nushell/.config/nushell/scripts/ultimate_extractor.nu +++ b/nushell/.config/nushell/scripts/ultimate_extractor.nu @@ -22,6 +22,6 @@ export def extract [name:string] { error make { msg: "unsupported file extension" } } else { let handler = ($maybe_handler | first) - nu -c ($handler.command + ' ' + $name) + nu -c ($handler.command + ' ' + $"'($name)'") } }