mirror of
https://github.com/openappsec/attachment.git
synced 2025-09-27 10:18:47 +03:00
9 lines
244 B
Bash
9 lines
244 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
echo "Preparing shared Envoy attachment files..."
|
|
mkdir -p /envoy/attachment/shared && \
|
|
cp -r /envoy/attachment/lib* /envoy/attachment/shared && \
|
|
cp /envoy/attachment/versions/$ENVOY_VERSION/lib* /envoy/attachment/shared
|