summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2021-02-23 10:02:36 -0330
committerTim Oram <dev@mitmaro.ca>2021-02-24 09:14:39 -0330
commitb7566aee6df9eb3426be57e502eac4ff70414bc1 (patch)
tree570dd1013f6d05f129698cbc0021334261e63118
parent6ed9725b6211f69b34c4c79673f2305deed54862 (diff)
Fix latest release script
The build image now uses Python3, so the script needed to be updated.
-rwxr-xr-x.github/scripts/push-latest-release.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/push-latest-release.bash b/.github/scripts/push-latest-release.bash
index 3dfdf97..745f998 100755
--- a/.github/scripts/push-latest-release.bash
+++ b/.github/scripts/push-latest-release.bash
@@ -14,7 +14,7 @@ assets="$(python -c "
import json
assets = json.loads('$assets')
for asset in assets:
- print asset['name'], asset['id']
+ print(asset['name'], asset['id'])
")"
while read name id; do