scripts/portable_date.sh: fix parsing of date strings on non-GNU systems

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48592
This commit is contained in:
Felix Fietkau 2016-02-01 10:33:15 +00:00
parent d9fab87607
commit 64ec9dc2a1
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
case $(uname) in
NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin)
date -r $1 $2
date -j -f "%Y-%m-%d %H:%M:%S %z" "$1" "$2" 2>/dev/null
;;
*)
date -d @$1 $2
date -d "@$1" "$2"
esac
exit $?