mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-14 21:27:01 +02: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
|