Forgot one spot
This commit is contained in:
parent
bcf65ce10f
commit
16fb7ca849
@ -661,9 +661,14 @@ def main():
|
|||||||
print(asset["browser_download_url"])
|
print(asset["browser_download_url"])
|
||||||
return
|
return
|
||||||
|
|
||||||
|
format_fields = dict(
|
||||||
|
asset_name=asset["name"],
|
||||||
|
**matched_values._asdict(),
|
||||||
|
)
|
||||||
|
|
||||||
# Format files to extract with version info, as this is sometimes included
|
# Format files to extract with version info, as this is sometimes included
|
||||||
formatted_files = (
|
formatted_files = (
|
||||||
[file.format(**matched_values._asdict()) for file in args.extract_files]
|
[file.format(**format_fields) for file in args.extract_files]
|
||||||
if args.extract_files
|
if args.extract_files
|
||||||
else None
|
else None
|
||||||
)
|
)
|
||||||
@ -678,7 +683,7 @@ def main():
|
|||||||
|
|
||||||
# Optionally execute post command
|
# Optionally execute post command
|
||||||
if args.exec:
|
if args.exec:
|
||||||
check_call(args.exec.format(asset["name"]), shell=True)
|
check_call(args.exec.format(asset["name"], **format_fields), shell=True)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user