~ubuntu-archive/ubuntu-archive-tools/trunk

« back to all changes in this revision

Viewing changes to kernel_workflow.py

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2019-07-18 09:39:05 UTC
  • Revision ID: lukasz.zemczak@canonical.com-20190718093905-dz1up8siaeow943p
kernel-sru-review: allow skipping the source name check.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
    if source_name != package:
94
94
        print("Cannot determine base package for %s, %s vs. %s"
95
95
              % (bugnum, source_name, package))
96
 
        return
 
96
        if context['skipnamecheck']:
 
97
            return
97
98
 
98
99
    if not packages:
99
100
        print("No packages in the prepare list, don't know what to do")