Skip to content

Commit

Permalink
Merge pull request #419 from mithro/fix-generate
Browse files Browse the repository at this point in the history
travis: Fixing generate-prebuilt-list
  • Loading branch information
mithro committed Mar 18, 2018
2 parents cacbf40 + d70a2db commit 7a70488
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .travis/generate-prebuilt-list.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,8 @@ def get_channel_spreadsheet():
continue
if i[0] != "GitHub":
continue
if len(i) != 6:
print("Skipping row %s" % i)
continue

_, _, rev, name, conf, _ = i
_, _, rev, name, conf, *_ = i
if not name:
continue
assert name not in rev_names, "{} is listed multiple times!".format(
Expand Down

0 comments on commit 7a70488

Please sign in to comment.