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 if [[ -z ${filesystem} ]]; then
filesystem="${default_filesystem}" filesystem="${default_filesystem}"
fi fi
if ! grep -qw "${filesystem}" <<<"${supported_filesystem}"; then if ! grep -qw "${filesystem}" <<<"${supported_filesystems}"; then
filesystem="" filesystem=""
echo echo
echo "Please enter a valid filesystem." echo "Please enter a valid filesystem."