OLD | NEW |
---|---|
(Empty) | |
1 #!/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
| |
2 | |
3 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
4 | |
5 cd $DIR | |
6 | |
7 rm -f appveyor.* | |
8 rm -f autogen.sh | |
9 rm -rf benchmarks/ | |
10 rm -f BUILD | |
11 rm -rf cmake/ | |
12 rm -f configure.ac | |
13 rm -rf conformance/ | |
14 rm -rf csharp/ | |
15 rm -rf editors/ | |
16 rm -rf examples/ | |
17 rm -f generate_descriptor_proto.sh | |
18 rm -f .gitignore | |
19 rm -f gmock.BUILD | |
20 rm -f INSTALL.txt | |
21 rm -rf java/ | |
22 rm -rf javanano/ | |
23 rm -rf js/ | |
24 rm -rf m4/ | |
25 rm -rf Makefile.am | |
26 rm -rf more_tests/ | |
27 rm -rf objectivec/ | |
28 rm -f post_process_dist.sh | |
29 rm -f protobuf.bzl | |
30 rm -f protobuf-lite.pc.in | |
31 rm -f protobuf.pc.in | |
32 rm -f Protobuf.podspec | |
33 rm -rf protoc-artifacts/ | |
34 rm -rf ruby/ | |
35 rm -f six.BUILD | |
36 rm -f travis.sh | |
37 rm -f .travis.yml | |
38 rm -f update_file_lists.sh | |
39 rm -rf util/ | |
40 rm -f WORKSPACE | |
41 | |
42 # src/ | |
43 rm -rf src/solaris/ | |
44 rm -f src/Makefile.am | |
45 | |
46 # src/google/protobuf/compiler/ | |
47 rm -rf src/google/protobuf/compiler/csharp | |
48 rm -rf src/google/protobuf/compiler/java | |
49 rm -rf src/google/protobuf/compiler/javanano | |
50 rm -rf src/google/protobuf/compiler/js | |
51 rm -rf src/google/protobuf/compiler/objectivec | |
52 rm -rf src/google/protobuf/compiler/ruby | |
OLD | NEW |