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:
parent
d9fab87607
commit
64ec9dc2a1
1 changed files with 2 additions and 2 deletions
|
@ -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 $?
|
||||
|
|
Loading…
Reference in a new issue