Bazel's eclipse project generation: use query function
This is not really a problem anymore because of latest change but
it is error prone to leave it that way.
--
MOS_MIGRATED_REVID=91782569
diff --git a/scripts/get_project_paths.sh b/scripts/get_project_paths.sh
index 608e3e9..327e2b2 100755
--- a/scripts/get_project_paths.sh
+++ b/scripts/get_project_paths.sh
@@ -73,6 +73,6 @@
| sed 's|^//\(.*\):\(.*\)|bazel-bin/\1/lib\2.jar:bazel-genfiles/\1|')
# Hack for genproto
-PROTOBUFS=$(bazel query 'kind(genproto, deps('"$TARGET"'))' \
+PROTOBUFS=$(query 'kind(genproto, deps('"$TARGET"'))' \
| sed 's|^//\(.*\):\(.*\)$|bazel-bin/\1/lib\2.jar:bazel-bin/\1/lib\2.jar.proto_output/|')
LIB_PATHS="${JAR_FILES} ${PROTOBUFS} ${GEN_LIBS}"