Browse Source

tools: update license-builder.sh for v8_inspector

Start including the license from v8_inspector and its build time
dependencies: jinja2 and markupsafe.

PR-URL: https://github.com/nodejs/node/pull/7796
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: jasnell - James M Snell <jasnell@gmail.com>
v7.x
Ali Ijaz Sheikh 9 years ago
parent
commit
3534600185
  1. 10
      tools/license-builder.sh

10
tools/license-builder.sh

@ -82,5 +82,15 @@ addlicense "gtest" "deps/gtest" "$(cat ${rootdir}/deps/gtest/LICENSE)"
addlicense "node-weak" "test/gc/node_modules/weak" \ addlicense "node-weak" "test/gc/node_modules/weak" \
"$(cat ${rootdir}/test/gc/node_modules/weak/LICENSE)" "$(cat ${rootdir}/test/gc/node_modules/weak/LICENSE)"
# v8_inspector
addlicense "v8_inspector" "deps/v8_inspector/third_party/v8_inspector" \
"$(cat ${rootdir}/deps/v8_inspector/third_party/v8_inspector/LICENSE)"
# Build tooling for v8_inspector
addlicense "jinja2" "deps/v8_inspector/third_party/jinja2" \
"$(cat ${rootdir}/deps/v8_inspector/third_party/jinja2/LICENSE)"
addlicense "markupsafe" "deps/v8_inspector/third_party/markupsafe" \
"$(cat ${rootdir}/deps/v8_inspector/third_party/markupsafe/LICENSE)"
mv $tmplicense $licensefile mv $tmplicense $licensefile

Loading…
Cancel
Save