Fix typo
This commit is contained in:
parent
86216d4553
commit
9574b51ac0
1 changed files with 2 additions and 2 deletions
|
@ -762,7 +762,7 @@ def update_pkg_list(
|
||||||
pkg_state[pkg]["build_status"] = "success"
|
pkg_state[pkg]["build_status"] = "success"
|
||||||
continue
|
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...")
|
log_print("Signing package...")
|
||||||
for gpkg in pkg_list:
|
for gpkg in pkg_list:
|
||||||
|
@ -782,7 +782,7 @@ def update_pkg_list(
|
||||||
subprocess.run(
|
subprocess.run(
|
||||||
command_list,
|
command_list,
|
||||||
check=True,
|
check=True,
|
||||||
cwd=os.path.join(other_state['clonesdir'], pkg),
|
cwd=os.path.join(other_state['clones_dir'], pkg),
|
||||||
input=signing_gpg_pass,
|
input=signing_gpg_pass,
|
||||||
text=True,
|
text=True,
|
||||||
env={"GNUPGHOME": signing_gpg_dir},
|
env={"GNUPGHOME": signing_gpg_dir},
|
||||||
|
|
Loading…
Reference in a new issue