From 8f8284bf0ca66efd227e6e68f0ce7b7c4e85eddd Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 24 Jan 2023 19:42:59 +0100 Subject: [PATCH] fix parameter --- usr/lib/archboot/installer/mountpoints.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/mountpoints.sh b/usr/lib/archboot/installer/mountpoints.sh index 7bac84f90..284dca8ef 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -127,7 +127,7 @@ _create_filesystem() { _dialog --inputbox "Enter additional options to the filesystem creation utility.\nUse this field only, if the defaults are not matching your needs,\nelse just leave it empty." 10 70 2>"${_ANSWER}" || return 1 _FS_OPTIONS=$(cat "${_ANSWER}") else - FSTYPE="$(${_LSBLK} FSTYPE "${_DEV}")" + _FSTYPE="$(${_LSBLK} FSTYPE "${_DEV}")" if [[ "${_FSTYPE}" == "btrfs" ]]; then _SKIP_FILESYSTEM="1" _btrfs_subvolume || return 1