Skip to content

Commit

Permalink
Don't shaddow other variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernricks committed Jun 24, 2021
1 parent 004af56 commit 42faae9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pontos/release/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,11 +438,11 @@ def sign(

file_paths.extend(asset_paths)

for path in file_paths:
info(f"Signing {path}")
for file_path in file_paths:
info(f"Signing {file_path}")

shell_cmd_runner(
f"gpg --default-key {signing_key} --detach-sign --armor {path}"
f"gpg --default-key {signing_key} --detach-sign --armor {file_path}"
)

return upload_assets(
Expand Down

0 comments on commit 42faae9

Please sign in to comment.