Remove build_extensions_debug.sh as well

This commit is contained in:
M. Mert Yildiran 2022-01-23 23:03:54 +03:00
parent e894ed4621
commit 0ad5bc1f59
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

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