Fix weather hourly forecast time for <12hr times
This commit is contained in:
parent
383c52380f
commit
4fe129882d
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ printtables() {
|
||||||
if [ "$NOWHR" -gt "12" ]; then
|
if [ "$NOWHR" -gt "12" ]; then
|
||||||
INDENTN="$(echo "$NOWHR - 12" | bc)"
|
INDENTN="$(echo "$NOWHR - 12" | bc)"
|
||||||
else
|
else
|
||||||
INDENTN="$(echo "12 - $NOWHR" | bc)"
|
INDENTN="$(echo "$NOWHR" | bc)"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
INDENT=""
|
INDENT=""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue