mirror of
https://github.com/BioArchLinux/bioarchlinux-tools.git
synced 2025-03-09 22:53:31 +00:00
20221007: fix
This commit is contained in:
parent
92872c5f6f
commit
e2972e6d9f
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ def search_pkgbuild_for_pkgname(
|
||||||
m = re_package.match(l)
|
m = re_package.match(l)
|
||||||
if m:
|
if m:
|
||||||
if m.group(1):
|
if m.group(1):
|
||||||
ret.add(m.group(1))
|
ret.add(m.group(1).strip()))
|
||||||
else:
|
else:
|
||||||
ret.add(pkgbuild.parent.name)
|
ret.add(pkgbuild.parent.name)
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
|
|
|
@ -8,7 +8,7 @@ ADMIN_GH = 'starsareintherose'
|
||||||
|
|
||||||
REPO_URL = f'git@github.com:{REPO_NAME}.git'
|
REPO_URL = f'git@github.com:{REPO_NAME}.git'
|
||||||
MYMAIL = 'lilac@bioarchlinux.org'
|
MYMAIL = 'lilac@bioarchlinux.org'
|
||||||
REPODIR = Path('/usr/share/archgitrepo-webhook/bioarchlinux').expanduser()
|
REPODIR = Path('/home/bio/Packages/BioArchLinux').expanduser()
|
||||||
|
|
||||||
def gen_log_comment(pkgs: list[str]) -> str:
|
def gen_log_comment(pkgs: list[str]) -> str:
|
||||||
ss = ['''\
|
ss = ['''\
|
||||||
|
|
Loading…
Add table
Reference in a new issue