1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

Merge branch 'fix_path' into 'master'

Fix compare of Path objects

See merge request fdroid/fdroidserver!1309
This commit is contained in:
Jochen Sprickerhof 2023-02-20 11:12:06 +00:00
commit 56b5b180aa

View File

@ -971,7 +971,7 @@ def getvcs(vcstype, remote, local):
if vcstype == 'bzr':
return vcs_bzr(remote, local)
if vcstype == 'srclib':
if local != os.path.join('build', 'srclib', remote):
if local != Path('build', 'srclib', remote):
raise VCSException("Error: srclib paths are hard-coded!")
return getsrclib(remote, os.path.join('build', 'srclib'), raw=True)
if vcstype == 'svn':