repo.py: pathlib is pain in the ass

This commit is contained in:
JerryXiao 2019-04-03 21:02:24 +08:00
parent 92af54fba4
commit 57d26ac8e8
Signed by: Jerry
GPG Key ID: 9D9CE43650FF2BAA
1 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,8 @@ def repo_remove(fpaths):
for fpath in fpaths:
throw_away(fpath)
sigpath = fpath.parent / f'{str(fpath.name)}.sig'
if sigpath.exists():
# there is a fscking problem that fscking pathlib always follow symlinks
if sigpath.exists() or sigpath.is_symlink():
throw_away(sigpath)
pkgnames = [get_pkg_details_from_name(fpath.name).pkgname for fpath in fpaths]
return bash(f'{REPO_REMOVE_CMD} {dbpath} {" ".join(pkgnames)}', RUN_CMD_TIMEOUT=5*60)