Simple Git & GitHub CLI Shell Scripts
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Offline message

+1 -1
+1 -1
utils/check_connection.sh
··· 9 9 # Check for internet connectivity to GitHub 10 10 function check_connection { 11 11 if ! connected; then 12 - echo "${BOLD} ■■▶ This won't work, you are offline !${RESET}" 12 + echo "${BOLD} This won't work, you are offline !${RESET}" 13 13 exit 0 14 14 fi 15 15 }