You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/07/26 03:51:36 UTC

[skywalking-nodejs] 11/23: Add missing license header and add generated file to .gitignore

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nodejs.git

commit 0b636465e9568f4102a5e41ea274544a29f96abe
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Wed Jun 24 17:00:57 2020 +0800

    Add missing license header and add generated file to .gitignore
---
 .gitignore        |  1 +
 scripts/protoc.sh | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/.gitignore b/.gitignore
index 5d0a101..dcaec07 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ node_modules
 /lib
 src/proto/
 *.log
+tsconfig.tsbuildinfo
diff --git a/scripts/protoc.sh b/scripts/protoc.sh
index 47ae6bc..8e7679d 100755
--- a/scripts/protoc.sh
+++ b/scripts/protoc.sh
@@ -1,4 +1,20 @@
 #!/usr/bin/env bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
 
 ROOT_DIR="$(dirname "$0")"/..