Skip to content
Snippets Groups Projects
Unverified Commit a539293a authored by Christian Rebischke's avatar Christian Rebischke Committed by GitHub
Browse files

Merge pull request #72 from shibumi/shibumi/fix-is-latest-logic

fix bug #71
parents abb54295 031e245d
No related branches found
Tags 1-29.4.5-1
No related merge requests found
......@@ -2,3 +2,4 @@ packer_cache/
*.box
*.swp
output-*
.vscode
......@@ -12,8 +12,7 @@ import subprocess
import os.path
API_URL = 'https://app.vagrantup.com/api/v1/box/archlinux/archlinux'
NOW = datetime.datetime.now()
THIS_MONTH = int(NOW.strftime("%m"))
NOW = datetime.date.today()
LEN_RELEASES = 2
CWD = '/srv/arch-boxes/arch-boxes'
ISO_PATH = '/srv/ftp/iso/latest/archlinux-' + NOW.strftime(
......@@ -58,8 +57,12 @@ def determine_missing_release(release_providers):
def is_latest(release_version):
release_month = int(release_version.split(".")[1])
return THIS_MONTH <= release_month
# we need to use .date() here, otherwise the compare is going to fail
release = datetime.datetime.strptime(release_version, "%Y.%m.%d").date()
# set the day to 1, because we only want to check for month and year
release = release.replace(day=1)
current_release = NOW.replace(day=1)
return current_release <= release
def all_released(release_providers):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment