Chromium Code Reviews| Index: third_party/protobuf/cleanup_release.sh |
| diff --git a/third_party/protobuf/cleanup_release.sh b/third_party/protobuf/cleanup_release.sh |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fcfc6c31498e6b65527d35de70671f0b1e9aa22b |
| --- /dev/null |
| +++ b/third_party/protobuf/cleanup_release.sh |
| @@ -0,0 +1,52 @@ |
| +#!/bin/bash |
|
Peter Kasting
2016/04/06 22:35:39
Why do we need this script?
It won't affect the b
xyzzyz
2016/04/07 18:55:02
Along with the patch 0002, it affects protoc sligh
Peter Kasting
2016/04/07 23:25:38
In what way? protoc won't support these inputs an
Peter Kasting
2016/04/13 02:11:44
All of my above concerns still stand. I still bel
xyzzyz
2016/04/14 00:23:56
Pulled full protobuf release and deleted this scri
|
| + |
| +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| + |
| +cd $DIR |
| + |
| +rm -f appveyor.* |
| +rm -f autogen.sh |
| +rm -rf benchmarks/ |
| +rm -f BUILD |
| +rm -rf cmake/ |
| +rm -f configure.ac |
| +rm -rf conformance/ |
| +rm -rf csharp/ |
| +rm -rf editors/ |
| +rm -rf examples/ |
| +rm -f generate_descriptor_proto.sh |
| +rm -f .gitignore |
| +rm -f gmock.BUILD |
| +rm -f INSTALL.txt |
| +rm -rf java/ |
| +rm -rf javanano/ |
| +rm -rf js/ |
| +rm -rf m4/ |
| +rm -rf Makefile.am |
| +rm -rf more_tests/ |
| +rm -rf objectivec/ |
| +rm -f post_process_dist.sh |
| +rm -f protobuf.bzl |
| +rm -f protobuf-lite.pc.in |
| +rm -f protobuf.pc.in |
| +rm -f Protobuf.podspec |
| +rm -rf protoc-artifacts/ |
| +rm -rf ruby/ |
| +rm -f six.BUILD |
| +rm -f travis.sh |
| +rm -f .travis.yml |
| +rm -f update_file_lists.sh |
| +rm -rf util/ |
| +rm -f WORKSPACE |
| + |
| +# src/ |
| +rm -rf src/solaris/ |
| +rm -f src/Makefile.am |
| + |
| +# src/google/protobuf/compiler/ |
| +rm -rf src/google/protobuf/compiler/csharp |
| +rm -rf src/google/protobuf/compiler/java |
| +rm -rf src/google/protobuf/compiler/javanano |
| +rm -rf src/google/protobuf/compiler/js |
| +rm -rf src/google/protobuf/compiler/objectivec |
| +rm -rf src/google/protobuf/compiler/ruby |