Fix incorrect variable reference

This commit is contained in:
2022-11-02 22:28:48 -04:00
parent 7e04199e1e
commit bb9950803d

View File

@ -378,7 +378,7 @@ interactive_config() {
if [[ -z ${filesystem} ]]; then
filesystem="${default_filesystem}"
fi
if ! grep -qw "${filesystem}" <<<"${supported_filesystem}"; then
if ! grep -qw "${filesystem}" <<<"${supported_filesystems}"; then
filesystem=""
echo
echo "Please enter a valid filesystem."