Fix syntax error at end of installer

This commit is contained in:
Joshua Boniface 2023-09-01 15:41:54 -04:00
parent 320effef91
commit 9eecf10479
1 changed files with 1 additions and 1 deletions

View File

@ -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