Fix typo: missing comma in tuple

This commit is contained in:
Stephen Seo 2022-09-08 13:29:22 +09:00
parent c8f0bd6f06
commit b65812cc3b

View file

@ -580,7 +580,7 @@ def get_pkg_current_version(pkg, pkg_state, repo):
(
"/usr/bin/env",
"bash",
"-c"
"-c",
"tar -tf {} | grep '{}.*/$'".format(
repo, pkg_state[pkg]["pkg_name"]
),