github: bump days count for list_old_branches.sh

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-06-30 09:29:34 +02:00
parent 3c142fffd8
commit 7d393cef3f
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -7,7 +7,7 @@ function getCommitUnix() {
git show --no-patch --no-notes --pretty='%at' ${1}
}
OLDER_THAN_DAYS="60"
OLDER_THAN_DAYS="90"
CURRENT_TIME=$(date +%s)
OLDER_THAN_UNIX=$(( ${OLDER_THAN_DAYS} * 86400 ))
OLDER_THAN=$(( ${CURRENT_TIME} - ${OLDER_THAN_UNIX} ))