more formatting

This commit is contained in:
Heavybullets8 2022-07-26 18:00:03 -06:00
parent 9aa6e15f4e
commit ac95a304d7

View File

@ -5,8 +5,8 @@ commander(){
mapfile -t array < <(cli -m csv -c 'app chart_release query name,update_available,human_version,human_latest_version,container_images_update_available,status' | tr -d " \t\r" | grep -E ",true($|,)" | sort)
echo -e "\nAplication Update Output"
echo "------------------------"
[[ -z $array ]] && echo -e "\nThere are no updates available" && return 0 || echo -e "\n${#array[@]} update(s) available"
[[ -z $timeout ]] && echo -e "\nDefault Timeout: 500" && timeout=500 || echo -e "\nCustom Timeout: $timeout"
[[ -z $array ]] && echo "There are no updates available" && return 0 || echo "${#array[@]} update(s) available"
[[ -z $timeout ]] && echo "Default Timeout: 500" && timeout=500 || echo "Custom Timeout: $timeout"
[[ "$timeout" -le 120 ]] && echo "Warning: Your timeout is set low and may lead to premature rollbacks or skips"
echo "Asynchronous Updates: $update_limit"