Fix license header check

This commit is contained in:
Simon Hausmann 2021-01-12 07:18:00 +01:00
parent 6b300ab194
commit e74159f993
3 changed files with 20 additions and 0 deletions

View file

@ -1,3 +1,12 @@
/* LICENSE BEGIN
This file is part of the SixtyFPS Project -- https://sixtyfps.io
Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
SPDX-License-Identifier: GPL-3.0-only
This file is also available under commercial licensing terms.
Please contact info@sixtyfps.io for more information.
LICENSE END */
use super::CanvasRc;
use sixtyfps_corelib::graphics::FontRequest;
use std::cell::RefCell;

View file

@ -1,3 +1,12 @@
/* LICENSE BEGIN
This file is part of the SixtyFPS Project -- https://sixtyfps.io
Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
SPDX-License-Identifier: GPL-3.0-only
This file is also available under commercial licensing terms.
Please contact info@sixtyfps.io for more information.
LICENSE END */
use super::CanvasRc;
use sixtyfps_corelib::graphics::FontRequest;
use std::cell::RefCell;

View file

@ -230,6 +230,8 @@ lazy_static! {
(".*README$", LicenseLocation::NoLicense),
(".*README\\.txt$", LicenseLocation::NoLicense),
("LICENSE\\..*", LicenseLocation::NoLicense),
("LICENSE-APACHE", LicenseLocation::NoLicense),
("LICENSE-SIL", LicenseLocation::NoLicense),
("^examples/slide_puzzle/plaster-font/OFL.txt$", LicenseLocation::NoLicense),
]
.iter()