Compare commits

..

No commits in common. "c47326ff2544b6a507f670b70b32ecbbb71204d7" and "e396345058e8f6d58475ac483d47d154d2f9fa76" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ trap - ERR
if ping -c 1 -W 1 1.1.1.1 &> /dev/null; then msg_ok "Internet Connected"; else
msg_error "Internet NOT Connected"
read -r -p "Would you like to continue anyway? <y/N> " prompt
if echo "$prompt" | grep -Ei "^(y|yes)$" > /dev/null; then
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}"
else
echo -e " 🖧 Check Network Settings"