Fix errors with the previous commit
The previous commit made an invalid symlink to the signature. This commit fixes this.
This commit is contained in:
parent
db93580083
commit
5bee6bb54d
1 changed files with 2 additions and 2 deletions
|
@ -818,8 +818,8 @@ def update_pkg_list(
|
|||
[
|
||||
"/usr/bin/ln",
|
||||
"-sf",
|
||||
str(os.path.join(pkg_out_dir, f"{repo}")),
|
||||
str(os.path.join(pkg_out_dir, f"{repo}")).removesuffix("tar.sig") + ".sig",
|
||||
str(os.path.join(pkg_out_dir, f"{repo}.sig")),
|
||||
str(os.path.join(pkg_out_dir, f"{repo}")).removesuffix(".tar") + ".sig",
|
||||
]
|
||||
)
|
||||
except subprocess.CalledProcessError:
|
||||
|
|
Loading…
Reference in a new issue