1
0
forked from brl/citadel
brl 098b8f982b Squashed 'poky/' content from commit 4469acdf1d
git-subtree-dir: poky
git-subtree-split: 4469acdf1d0338220f3fe2ecb5e079eea6fda375
2017-12-04 16:35:29 -05:00

14 lines
375 B
Python

from django.core.management.base import BaseCommand, CommandError
from orm.models import Build
import os
class Command(BaseCommand):
args = ""
help = "Lists current builds"
def handle(self,**options):
for b in Build.objects.all():
print("%d: %s %s %s" % (b.pk, b.machine, b.distro, ",".join([x.target for x in b.target_set.all()])))