Skip to content

Commit 78e5e56

Browse files
committed
scripts: fix GNU data invocation
Signed-off-by: Jo-Philipp Wich <[email protected]> SVN-Revision: 48594
1 parent 18ba130 commit 78e5e56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/portable_date.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ case $(uname) in
55
date -j -f "%Y-%m-%d %H:%M:%S %z" "$1" "$2" 2>/dev/null
66
;;
77
*)
8-
date -d "@$1" "$2"
8+
date -d "$1" "$2"
99
esac
1010

1111
exit $?

0 commit comments

Comments
 (0)