Skip to content

Commit

Permalink
Update install.sh: EOF fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Aug 10, 2024
1 parent e9536f1 commit 65bea5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down

0 comments on commit 65bea5a

Please sign in to comment.