Skip new sha256 files on repo.saltstack.com/windows

This commit is contained in:
Ch3LL 2018-06-20 14:28:31 -04:00
parent 6929423528
commit 236773e3e9
No known key found for this signature in database
GPG key ID: 132B55A7C13EFA73

View file

@ -29,7 +29,7 @@ def iter_installers(content):
x = m.groups()[0]
if not x.startswith(PREFIX):
continue
if x.endswith('zip'):
if x.endswith(('zip', 'sha256')):
continue
if installer:
if x != installer + '.md5':