diff options
author | Christian Uldall Pedersen <cup@gamblify.com> | 2017-10-31 10:37:20 +0100 |
---|---|---|
committer | Christian Uldall Pedersen <cup@gamblify.com> | 2017-10-31 11:42:31 +0100 |
commit | bb6dc76307483fc811d9585b94780ffc954d4f28 (patch) | |
tree | fa5547ce5e8742a6da257e435205204d745ecc56 | |
parent | 31cd46fbf1ca1798c26cd1d7725ccc55661645d0 (diff) |
Fixed GitHub detection of license in LICENSE.txt file.
Unfortunately licensee also looks at the COPYRIGHT.txt file and detects it as "other".
GitHub therefore still doesn't add the correct license to the project. This is
however a step in the right direction.
Before:
$ licensee LICENSE.txt
License: Other
Matched files: ["LICENSE.txt"]
LICENSE.txt:
Content hash: 8dd7a8f24846f434ce7fdb96f6440909b5469277
Attribution: Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.
License: Other
After:
$ licensee LICENSE.txt
License: MIT License
Matched files: ["LICENSE.txt"]
LICENSE.txt:
Content hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
Attribution: Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.
Confidence: 100.00%
Matcher: Licensee::Matchers::Exact
License: MIT License
-rw-r--r-- | LICENSE.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/LICENSE.txt b/LICENSE.txt index 0b5b0c341f..bcce1a3a33 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -18,5 +18,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - --- Godot Engine <https://godotengine.org> |