From d21cdfc0a52143211a8b4a4bf4d18f66f83ebbb8 Mon Sep 17 00:00:00 2001 From: baehyunsol <47506131+baehyunsol@users.noreply.github.com> Date: Thu, 23 Feb 2023 23:43:22 +0900 Subject: [PATCH] remove `build-string`, which is deprecated (#390) --- data_extraction/ultimate_extractor.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } }