From 9eecf10479aa219e4ebfa8dc43e9f70acfaa6299 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:54 -0400 Subject: [PATCH] Fix syntax error at end of installer --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f4715c5..c887571 100755 --- a/install.sh +++ b/install.sh @@ -352,7 +352,7 @@ set +o errexit echo echo "Edit the /etc/network/interfaces file in the target before completing setup? [y/N]" read edit_ifaces -if [[ ${edit_ifaces} == 'y' or ${edit_ifaces} == 'Y' ]]; then +if [[ ${edit_ifaces} == 'y' || ${edit_ifaces} == 'Y' ]]; then vim ${target}/etc/network/interfaces fi echo