wrong loop

This commit is contained in:
JerryXiao 2019-04-10 21:39:28 +08:00
parent 73fd0f5f3f
commit 2a00bdd3c9
Signed by: Jerry
GPG Key ID: 9D9CE43650FF2BAA
1 changed files with 4 additions and 1 deletions

View File

@ -262,11 +262,14 @@ def _update(overwrite=False):
if nlocation.exists():
logger.warning(f'Overwriting {nlocation}')
else:
should_continue = False
for nlocation in (pkg_nlocation, sig_nlocation):
if nlocation.exists():
logger.warning('Same version is already in the repo.')
throw_away(pkg_to_add)
continue
should_continue = True
if should_continue:
continue
copyfile(pkg_to_add, pkg_nlocation)
copyfile(sigfile, sig_nlocation)
archive_pkg(pkg_to_add)