From ea3920caf69635d2e338978c72e5d1c2c0a47656 Mon Sep 17 00:00:00 2001 From: Skye Im Date: Mon, 27 Mar 2023 11:31:55 +0200 Subject: [PATCH] Remove v0 from docs build --- build-docs.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build-docs.sh b/build-docs.sh index 22f5fe94..3772a958 100755 --- a/build-docs.sh +++ b/build-docs.sh @@ -12,12 +12,6 @@ mkdir -p docs/docs dockerout # and ingest_job.proto. Those should probably be moved out of this repository. PROTOFILES=$(find $PWD/cognite/seismic/protos -name '*.proto' | sed "s~$PWD/cognite/seismic/protos~protos/cognite/seismic/protos~") -# Protocol buffer files describing the v0 API, in the process of being phased out -# Ideally this should be determined by just recursing through the imports in query_service.proto -# and ingest_service.proto -V0_PROTOS="query_service ingest_service query_service_messages ingest_service_messages types" -V0_PROTOFILES=$(for PROTO in $V0_PROTOS ; do echo protos/cognite/seismic/protos/${PROTO}.proto ; done ) - # Protocol buffer files describing the v1 API. # Ideally this should be determined by just recursing through the imports in v1/seismic_service.proto V1_PROTOS="v1/seismic_service v1/seismic_service_messages v1/seismic_service_datatypes types"