From 5bee6bb54d4b59c86d8c4e3949faf53be68122a1 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Thu, 2 Jun 2022 17:05:39 +0900 Subject: [PATCH] Fix errors with the previous commit The previous commit made an invalid symlink to the signature. This commit fixes this. --- update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.py b/update.py index c8d2f8b..f9f8afc 100755 --- a/update.py +++ b/update.py @@ -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: