mirror of https://github.com/grpc/grpc-web.git
Added missing License headers
This commit is contained in:
parent
151932592e
commit
89112899e9
|
@ -77,6 +77,8 @@ RUN add-apt-repository ppa:openjdk-r/ppa && \
|
|||
COPY . /github/grpc-web
|
||||
|
||||
RUN cd /github/grpc-web && \
|
||||
rm -rf third_party && \
|
||||
git checkout third_party && \
|
||||
./scripts/init_submodules.sh
|
||||
|
||||
RUN cd /github/grpc-web/third_party/grpc && \
|
||||
|
|
|
@ -74,6 +74,8 @@ RUN apt-get update && apt-get install -y \
|
|||
COPY . /github/grpc-web
|
||||
|
||||
RUN cd /github/grpc-web && \
|
||||
rm -rf third_party && \
|
||||
git checkout third_party && \
|
||||
./scripts/init_submodules.sh
|
||||
|
||||
RUN cd /github/grpc-web/third_party/grpc && \
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
./init_submodules.sh
|
||||
cd ..
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
./init_submodules.sh
|
||||
cd ..
|
||||
|
|
|
@ -1,8 +1,20 @@
|
|||
cd "$(dirname "$0")"
|
||||
cd ..
|
||||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"/..
|
||||
git submodule update --init
|
||||
cd third_party/closure-library && git checkout tags/v20171112 -f && cd ../..
|
||||
cd third_party/openssl && git checkout tags/OpenSSL_1_0_2h -f && cd ../..
|
||||
cd third_party/grpc && git checkout 8224c45 -f && git submodule update --init && cd ../..
|
||||
cd scripts/
|
||||
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
./init_submodules.sh
|
||||
cd ..
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
./init_submodules.sh
|
||||
cd ..
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2018 Google LLC
|
||||
#
|
||||
# Licensed 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
|
||||
#
|
||||
# https://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.
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
./init_submodules.sh
|
||||
cd ..
|
||||
make clean
|
||||
docker build -t ubuntu_16_04 -f net/grpc/gateway/docker/ubuntu_16_04/Dockerfile .
|
||||
CONTAINER_ID=$(docker create ubuntu_16_04)
|
||||
docker cp "$CONTAINER_ID:/github/grpc-web/gConnector.zip" net/grpc/gateway/docker/ubuntu_16_04
|
||||
docker cp "$CONTAINER_ID:/github/grpc-web/gConnector_static.zip" net/grpc/gateway/docker/ubuntu_16_04
|
||||
docker rm "$CONTAINER_ID"
|
Loading…
Reference in New Issue