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

« back to all changes in this revision

Viewing changes to bin/cron.source

  • Committer: Colin Watson
  • Date: 2015-09-14 07:42:14 UTC
  • Revision ID: cjwatson@canonical.com-20150914074214-6utmkgmobnz5cjvh
Silence some noise from checksum tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
def main():
30
30
    parser = OptionParser("%prog")
31
31
    parser.parse_args()
32
 
    config = Config(IMAGE_TYPE="source")
 
32
    config = Config(PROJECT="source", IMAGE_TYPE="source")
33
33
 
34
34
    # build_all.sh will interpret this combination as a request to build
35
35
    # only source images.
40
40
    # which will involve unsupported packages.
41
41
    config["CDIMAGE_UNSUPPORTED"] = "1"
42
42
 
43
 
    if not build_image_set(config):
 
43
    if not build_image_set(config, None):
44
44
        sys.exit(1)
45
45
 
46
46