pkgs/common/wrappers/date.sh
2022-04-12 14:56:19 -04:00

6 lines
119 B
Bash

#!/bin/sh
if [ "$SOURCE_DATE_EPOCH" ]; then
post="--utc --date @$SOURCE_DATE_EPOCH"
fi
exec /usr/bin/date "$@" $post