Fix incorrect variable reference

This commit is contained in:
Joshua Boniface 2023-09-01 15:41:59 -04:00
parent 6ba2666a8f
commit 0bf509ca9c
1 changed files with 1 additions and 1 deletions

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."