You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears the copywrite will not detect or attempt to fix wrong license, for example in hashicorp/terraform:
If I attempt to change provider_source.go in root to contain
// SPDX-License-Identifier: MPL-2.0
$ copywrite headers
Using license identifier: BUSL-1.1
Using copyright holder: HashiCorp, Inc.
Exempting the following search patterns:
**/*.tf
**/testdata/**
**/*.pb.go
**/*_string.go
**/mock*.go
docs/plugin-protocol/**
internal/tfplugin*/**
The following files are missing headers:
$ head -2 provider_source.go
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
The text was updated successfully, but these errors were encountered:
It appears the
copywrite
will not detect or attempt to fix wrong license, for example inhashicorp/terraform
:If I attempt to change
provider_source.go
in root to contain// SPDX-License-Identifier: MPL-2.0
The text was updated successfully, but these errors were encountered: