diff options
author | Rich Trott <rtrott@gmail.com> | 2018-07-25 15:54:24 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2018-07-26 16:08:30 -0700 |
commit | 40a413edf7ef4379cca2072bb8777be7986e2d2d (patch) | |
tree | 8a0f94ee56b0d5e82886b59640240ecc682f06e7 /tools | |
parent | a9f32a31e2c32de0f62f107ca5d4ac914bb70ccf (diff) | |
download | node-new-40a413edf7ef4379cca2072bb8777be7986e2d2d.tar.gz |
tools: remove obsolete entries from license
The LICENSE file has a few entries for things that no longer ship with
the code base. They are installed via npm instead. Remove them from the
license file.
Running the license builder on a fresh checkout will
result in errors until this change lands, since the necessary
information is not in the source tree until the `npm install` happens.
PR-URL: https://github.com/nodejs/node/pull/21979
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/license-builder.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/license-builder.sh b/tools/license-builder.sh index e394175090..105eec4ce3 100755 --- a/tools/license-builder.sh +++ b/tools/license-builder.sh @@ -71,8 +71,6 @@ addlicense "npm" "deps/npm" "$(cat ${rootdir}/deps/npm/LICENSE)" # Build tools addlicense "GYP" "tools/gyp" "$(cat ${rootdir}/tools/gyp/LICENSE)" -addlicense "marked" "tools/doc/node_modules/marked" \ - "$(cat ${rootdir}/tools/doc/node_modules/marked/LICENSE)" # Testing tools addlicense "cpplint.py" "tools/cpplint.py" \ @@ -85,8 +83,6 @@ addlicense "gtest" "deps/gtest" "$(cat ${rootdir}/deps/gtest/LICENSE)" addlicense "nghttp2" "deps/nghttp2" "$(cat ${rootdir}/deps/nghttp2/COPYING)" # remark -addlicense "unified" "deps/unified" "$(cat ${rootdir}/tools/doc/node_modules/unified/LICENSE)" -addlicense "remark-rehype" "deps/remark-rehype" "$(cat ${rootdir}/tools/doc/node_modules/remark-rehype/LICENSE)" addlicense "remark-cli" "tools/remark-cli" "$(cat ${rootdir}/tools/remark-cli/LICENSE)" # node-inspect |