Skip to content

Commit ac66f24

Browse files
committed
[PROTOC] Exclude ./build directory
There's no reason to try to build anything from within our temporary build location, and this will because more heavily used later in the series. Therefore, let's prepare for this eventuality by harmlessly excluding it today. Change-Id: I11d82a738c7ca2942c18ba7169c6ce2309091753 Signed-off-by: Gregory Haskins <gregory.haskins@gmail.com>
1 parent ae68cbd commit ac66f24

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/compile_protos.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ ROOTLESS_PROTO_FILES="$(find $PWD \
1616
$(for dir in $PROTO_ROOT_DIRS ; do echo "-path $dir -prune -o " ; done) \
1717
-path $PWD/vendor -prune -o \
1818
-path $PWD/gotools -prune -o \
19+
-path $PWD/build -prune -o \
1920
-name "*.proto" -exec readlink -f {} \;)"
2021
ROOTLESS_PROTO_DIRS="$(dirname $ROOTLESS_PROTO_FILES | sort | uniq)"
2122

0 commit comments

Comments
 (0)