diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 0737c729..a339eddc 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -80,7 +80,7 @@ schedule_packages() { # the current date is subtracted twice, so that later manual scheduling comes first DAYS=$(echo "$(date +'%j')*2"|bc) HOURS=$(echo "$(date +'%H')*2"|bc) - MINS=$(echo "$(date +'%M')*2"|bc) + MINS=$(date +'%M') # schedule on the full hour so we can recognize them easily DATE=$(date +'%Y-%m-%d %H:%M' -d "$DAYS day ago - $HOURS hours - $MINS minutes") TMPFILE=$(mktemp) ARTIFACTS=$1 |