aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/portable_date.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/portable_date.sh')
-rwxr-xr-xscripts/portable_date.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/portable_date.sh b/scripts/portable_date.sh
index 244f545a25..84b56382e0 100755
--- a/scripts/portable_date.sh
+++ b/scripts/portable_date.sh
@@ -5,7 +5,7 @@ case $(uname) in
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 $?