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:
Stephen Seo 2022-06-02 17:05:39 +09:00
parent db93580083
commit 5bee6bb54d

View file

@ -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: