From 0bf509ca9cf77fa8449f70f049878e468b7d3da8 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:59 -0400 Subject: [PATCH] Fix incorrect variable reference --- templates/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/install.sh b/templates/install.sh index 060e85a..7983ebd 100755 --- a/templates/install.sh +++ b/templates/install.sh @@ -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."