From 8b39b3d57516ac9ce4fa69439c22076208818c46 Mon Sep 17 00:00:00 2001 From: CapCreeperGR Date: Sat, 1 Jun 2024 20:10:56 +0300 Subject: [PATCH] Fixed minor mistake in source.default --- source.default | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source.default b/source.default index 99a9384..9ba34b7 100644 --- a/source.default +++ b/source.default @@ -9,7 +9,7 @@ FILENAME="${DOWNLOAD##*/}" # This function is used for downloading files and putting them into the correct location prepare() { wget "$DOWNLOAD" - tar -xvf nano-"$FILENAME" --strip-components=1 -C "$BPM_SOURCE" + tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" } # The build function is executed in the source directory