mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
15 lines
347 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
cd `dirname $0`/../..
|
||
|
grpc_dir=`pwd`
|
||
|
|
||
|
distrib=`md5sum /etc/issue | cut -f1 -d\ `
|
||
|
git submodule | while read sha path extra ; do
|
||
|
cd /tmp
|
||
|
name=`basename $path`
|
||
|
file=$name-$sha-$CONFIG-prebuilt-$distrib.tar.gz
|
||
|
echo $file
|
||
|
url=http://storage.googleapis.com/grpc-prebuilt-packages/$file
|
||
|
wget -q $url && tar xfz $file || true
|
||
|
done
|