fixup! Rename usage of master to main

This commit is contained in:
Leo Balter 2020-07-15 11:56:11 -07:00 committed by Rick Waldron
parent 2e127ec40e
commit 0277ed4260
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ _LICENSE_PATTERN = re.compile(
r'// Use of this source code is governed by a BSD-style license that can be[\r\n]{1,2}' +
r'// found in the LICENSE file\.' +
r'|' +
r'// See LICENSE or https://github\.com/tc39/test262/blob/main/LICENSE' +
r'// See LICENSE or https://github\.com/tc39/test262/blob/HEAD/LICENSE' +
r')', re.IGNORECASE)
class CheckLicense(Check):

View File

@ -26,7 +26,7 @@ _LICENSE_PATTERN = re.compile(
r'// Use of this source code is governed by a BSD-style license that can be[\r\n]{1,2}' +
r'// found in the LICENSE file\.' +
r'|' +
r'// See LICENSE or https://github\.com/tc39/test262/blob/main/LICENSE' +
r'// See LICENSE or https://github\.com/tc39/test262/blob/HEAD/LICENSE' +
r')[\r\n]{1,2}' + _BLANK_LINES, re.IGNORECASE)
yamlLoad = None