From 515cef87a1b676ad09b1fc2243815ffe3310b221 Mon Sep 17 00:00:00 2001 From: Aleks Kissinger Date: Mon, 14 Jan 2019 08:16:09 +0100 Subject: fixed curl invokation in github scripts --- scripts/gh-list.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scripts/gh-list.py') diff --git a/scripts/gh-list.py b/scripts/gh-list.py index 1966db4..f8b1c91 100644 --- a/scripts/gh-list.py +++ b/scripts/gh-list.py @@ -1,10 +1,11 @@ +#!/usr/bin/env python + from gh import gh, pr import os tok = os.getenv('GITHUB_TOKEN') -draft = [r for r in gh('releases') - if r['draft'] and r['name'] == 'AUTO'][0] +draft = [r for r in gh('releases') if r['draft']][0] for a in draft['assets']: print(a['browser_download_url'] + -- cgit v1.2.3