~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to bin/check-installable

  • Committer: Adam Conrad
  • Date: 2015-08-06 08:04:06 UTC
  • Revision ID: adconrad@0c3.net-20150806080406-altjtz2xv5tubg80
Tidy up ALL_PROJECTS a bit

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Check package installability on images."""
19
19
 
 
20
from optparse import OptionParser
20
21
import os
21
22
import sys
22
23
 
23
24
sys.path.insert(0, os.path.join(sys.path[0], os.pardir, "lib"))
24
25
from cdimage.check_installable import check_installable
25
 
from cdimage.config import config
 
26
from cdimage.config import Config
26
27
 
27
28
 
28
29
def main():
 
30
    parser = OptionParser("%prog")
 
31
    parser.parse_args()
 
32
    config = Config()
29
33
    check_installable(config)
30
34
 
31
35