diff --git a/data_extraction/ultimate_extractor.nu b/data_extraction/ultimate_extractor.nu index 028acfb..5f80bb4 100644 --- a/data_extraction/ultimate_extractor.nu +++ b/data_extraction/ultimate_extractor.nu @@ -22,6 +22,6 @@ export def extract [name:string #name of the archive to extract if ($command|is-empty) { echo 'Error! Unsupported file extension' } else { - nu -c (build-string $command.com ' ' $name) + nu -c ($command.com + ' ' + $name) } }