ath10k-firmware: update both QCA988X CT variants
[openwrt/staging/chunkeey.git] / scripts / portable_date.sh
index 84a18eb62190549404c86f1082ac571fa035f8b0..84b56382e0af941a9b2b8e73457839d4600d9341 100755 (executable)
@@ -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 $?