Fixed minor mistake in source.default

This commit is contained in:
CapCreeperGR 2024-06-01 20:10:56 +03:00
parent 3ea431b98d
commit 8b39b3d575

View File

@ -9,7 +9,7 @@ FILENAME="${DOWNLOAD##*/}"
# This function is used for downloading files and putting them into the correct location # This function is used for downloading files and putting them into the correct location
prepare() { prepare() {
wget "$DOWNLOAD" 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 # The build function is executed in the source directory