From: Stephen Seo Date: Sat, 4 Jun 2022 08:01:47 +0000 (+0900) Subject: Fix typo X-Git-Url: https://git.seodisparate.com/stephenseo/static/gitweb.css?a=commitdiff_plain;h=9574b51ac040a06a1448ad7a437cb43dff8a5938;p=AnotherAURHelper Fix typo --- diff --git a/update.py b/update.py index de908fa..6a9a170 100755 --- a/update.py +++ b/update.py @@ -762,7 +762,7 @@ def update_pkg_list( pkg_state[pkg]["build_status"] = "success" continue - pkg_list = glob.glob(os.path.join(other_state['clonesdir'], pkg, "*.pkg.tar*")) + pkg_list = glob.glob(os.path.join(other_state['clones_dir'], pkg, "*.pkg.tar*")) log_print("Signing package...") for gpkg in pkg_list: @@ -782,7 +782,7 @@ def update_pkg_list( subprocess.run( command_list, check=True, - cwd=os.path.join(other_state['clonesdir'], pkg), + cwd=os.path.join(other_state['clones_dir'], pkg), input=signing_gpg_pass, text=True, env={"GNUPGHOME": signing_gpg_dir},