Move all docs to docs folder and clean project root (#278)

This commit is contained in:
Igor Gov
2021-09-15 11:53:23 +03:00
committed by GitHub
parent 0840642c98
commit b9d2e671c7
11 changed files with 7 additions and 7 deletions

12
devops/build_extensions.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
for f in tap/extensions/*; do
if [ -d "$f" ]; then
extension=$(basename $f) && \
cd tap/extensions/${extension} && \
go build -buildmode=plugin -o ../${extension}.so . && \
cd ../../.. && \
mkdir -p agent/build/extensions && \
cp tap/extensions/${extension}.so agent/build/extensions
fi
done