mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-05 02:31:07 +00:00
* debug mizu * Update clean.go, cleanRunner.go, and tapRunner.go * Update tapRunner.go * Update cleanRunner.go * Update tapRunner.go Co-authored-by: Rami Berman <rami.berman@up9.com>
13 lines
385 B
Bash
Executable File
13 lines
385 B
Bash
Executable File
#!/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
|