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)'") } }