diff --git a/docs/Makefile b/docs/Makefile index c438cc882b..b824274140 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -16,4 +16,6 @@ extractor-docs: scripts/gen.sh tremor-script/src/extractor extractors connector-docs: - scripts/gen.sh tremor-connectors/src/impls connectors \ No newline at end of file + scripts/gen.sh tremor-connectors/src/impls connectors + scripts/gen.sh tremor-connectors-gcp/src connectors + scripts/gen.sh tremor-connectors-aws/src connectors \ No newline at end of file diff --git a/docs/scripts/gen.sh b/docs/scripts/gen.sh index 28322cc0bd..82e9859345 100755 --- a/docs/scripts/gen.sh +++ b/docs/scripts/gen.sh @@ -1,6 +1,6 @@ BASE=$1 # src/codec TARGET=$2 # codecs -for f in $(find ../${BASE}/*.rs | grep -v "/test.rs$" | sed -e "s;../${BASE}/;;g" -e 's;.rs$;;') +for f in $(find ../${BASE}/*.rs | grep -v "/test.rs$" | grep -v "/lib.rs$" | grep -v "/utils.rs$" | sed -e "s;../${BASE}/;;g" -e 's;.rs$;;') do name=$(echo ${f} | sed -e 's/_/-/g') file="../${BASE}/${f}.rs"