From ace0ed1fa0678da2ffcfcb20adfe6af8b2d00841 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 21 Oct 2023 21:21:56 -0500 Subject: [PATCH] Update powerwall.sh --- powerwall.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/powerwall.sh b/powerwall.sh index 7fcb110f..aa5642a5 100755 --- a/powerwall.sh +++ b/powerwall.sh @@ -899,8 +899,10 @@ GET_SNAPSHOTS(){ ESXIHOST=${PW_HOST_ADDRESSES[${SENSOR}]} echo -e "${idsCL[LightCyan]}${PW_ESXI_HOST_NAMES[${ESXIHOST}]} (${ESXIHOST}) " DIVIDER . lightCyan 70 + echo -en "${idsCL[LighGreen]}Looking for snapshots...${idsCL[Default]}" result=`${PW_FOLDER}/esxi-scripts/get-snapshots.ps1 ${ESXIHOST}` - [ "${result}" != "" ] && echo ${result} || echo "No snapshots found" + echo -e "\r\033[K" + [ "${result}" != "" ] && echo -e "${result}" || echo "No snapshots found" DIVIDER true lightCyan 70 fi done