mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
6 lines
119 B
Bash
6 lines
119 B
Bash
#!/bin/sh
|
|
|
|
if [ "$SOURCE_DATE_EPOCH" ]; then
|
|
post="--utc --date @$SOURCE_DATE_EPOCH"
|
|
fi
|
|
exec /usr/bin/date "$@" $post
|