From 65bea5a6f7cdd0db28a7414a95799c2f9c532b92 Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Sat, 10 Aug 2024 16:52:48 -0600 Subject: [PATCH] Update install.sh: EOF fix --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c7c2b0c32..4cd5b6c76 100755 --- a/install.sh +++ b/install.sh @@ -3572,7 +3572,9 @@ install_installer_dependencies() display_msg --log progress "Installing installer dependencies." TMP="${ALLSKY_LOGS}/installer.dependencies.log" - { sudo apt-get update && run_aptGet gawk jq } > "${TMP}" 2>&1 + { + sudo apt-get update && run_aptGet gawk jq + } > "${TMP}" 2>&1 check_success $? "gawk,jq installation failed" "${TMP}" "${DEBUG}" || exit_with_image 1 "${STATUS_ERROR}" "gawk,jq install failed."