Added support for busybox in time2str()

awk fallback if none of preceding method works
This commit is contained in:
Michele 2017-08-17 12:50:28 +02:00 committed by GitHub
parent 90100aa169
commit a07395fb56
1 changed files with 4 additions and 0 deletions

View File

@ -1367,6 +1367,10 @@ _time2str() {
echo "$_t_s_a"
fi
#Busybox
if echo "$1" | awk '{ print strftime("%c", $0); }' 2>/dev/null; then
return
fi
}
_normalizeJson() {